2016-08-20 12 views
0

私はファイルを添付して私のサーバーからメールを送信しようとしていますが、私の問題は添付ファイルの内容を除いてすべてメールが届いていることです。私がどのような形式で添付しても問題ありません。 sendmailのでWAMPサーバを実行しているメールの添付ファイルに空のファイルを取得する

イム()、ここではPHPスクリプトは次のとおりです。

<?php 

$email = $_GET['page']; 
function mail_attachment($filename, $path, $mailto, $from_mail, $from_name, $replyto, $subject, $message) { 

$file = $path.$filename; 
$file_size = filesize($file); 
$handle = fopen($file, "r"); 
$content = fread($handle, $file_size); 
fclose($handle); 
$content = chunk_split(base64_encode($content)); 
//$attachment = chunk_split(base64_encode(file_get_contents('./payDoc.pdf', FILE_USE_INCLUDE_PATH))); 
$uid = md5(uniqid(time())); 

$header = "From: ".$from_name." <".$from_mail.">\r\n"; 
$header .= "Reply-To: ".$replyto."\r\n"; 
$header .= "MIME-Version: 1.0\r\n"; 
$header .= "Content-Type: multipart/mixed; boundary=\"".$uid."\"\r\n\r\n"; 
$header .= "This is a multi-part message in MIME format.\r\n"; 
$header .= "--".$uid."\r\n"; 
$header .= "Content-type:text/plain; charset=iso-8859-1\r\n"; 
$header .= "Content-Transfer-Encoding: 7bit\r\n\r\n"; 
$header .= $message."\r\n\r\n"; 
$header .= "--".$uid."\r\n"; 
$header .= "Content-Type: application/octet-stream; name=\"".$filename."\"\r\n"; 
$header .= "Content-Transfer-Encoding: base64\r\n"; 
$header .= "Content-Disposition: attachment; filename=\"".$filename."\"\r\n\r\n"; 
//$header .= $attachment."\r\n\r\n"; 
$header .= "--".$uid."--"; 

// Messages for testing only, nobody will see them unless this script URL is visited manually 
if (mail($mailto, $subject, "", $header)) { 
    echo "Message sent!"; 
} else { 
    echo "ERROR sending message."; 
} 

}

//File attach 
$my_file = "payDoc.pdf"; 
$my_path = $_SERVER['DOCUMENT_ROOT']."/connect_android/include/"; 

//email is FROM 
$my_name = "Android Store"; 
$my_mail = "[email protected]"; 
$my_replyto = "[email protected]"; 

//email is going TO 
$to_email = $email; 

// Subject of email 
$my_subject = "Order details has arrived "; 



$message = "Please fill the file attached, 
some text to add 
goes here"; 

// send email 
mail_attachment($my_file, $my_path, $to_email, $my_mail, $my_name, $my_replyto, $my_subject, $message); 
+0

あなたのPHPコードにエラーが発生しましたか?あなたはデバッグしましたか? ** error_reporting(1); ** –

+0

メッセージは郵便配達員に送られ、メールはうまく転送され、添付ファイルは唯一の問題です。彼は空白です。 – 2Stoned

+0

一般に、ファイルのパスへのリンクです。だからあなたのファイルのパスが良いかどうかを調べてみてください。 –

答えて

0

5分前に同じ問題が発生していましたが、これをオープニングフォームタグに追加していませんでした。

enctype="multipart/form-data" 
関連する問題