PHPを使用して、自動作成された電子メールを自分のWebサイトに送信しようとしています。少し努力した結果、このスクリプトになりましたが、何らかの理由でエラーが発生し、理由がわかりません。
function sendMail($_POST) {
$fileatt = "http://www.mysite.com/contract.pdf";
$fileatt_type = "application/pdf";
$fileatt_name = "contract.pdf";
$email_from = "info@mysite.com";
$email_subject = "Your Contract";
$email_message = "Thanks for your booking! Here is your contract";
$email_to = $_POST['mail']; // Who the email is to
$headers = "From: ".$email_from;
$file = fopen($fileatt,'r');
$data = fread($file,filesize($fileatt));
fclose($file);
$semi_rand = md5(time());
$mime_boundary = "==Multipart_Boundary_x{$semi_rand}x";
$headers .= "\nMIME-Version: 1.0\n" .
"Content-Type: multipart/mixed;\n" .
" boundary=\"{$mime_boundary}\"";
$email_message .= "This is a multi-part message in MIME format.\n\n" .
"--{$mime_boundary}\n" .
"Content-Type:text/html; charset=\"iso-8859-1\"\n" .
"Content-Transfer-Encoding: 7bit\n\n" .
$email_message .= "\n\n";
$data = chunk_split(base64_encode($data));
$email_message .= "--{$mime_boundary}\n" .
"Content-Type: {$fileatt_type};\n" .
" name=\"{$fileatt_name}\"\n" .
//"Content-Disposition: attachment;\n" .
//" filename=\"{$fileatt_name}\"\n" .
"Content-Transfer-Encoding: base64\n\n" .
$data .= "\n\n" .
"--{$mime_boundary}--\n";
$ok = @mail($email_to, $email_subject, $email_message, $headers);
if($ok) {
echo "You file has been sent to the email address you specified";
} else {
die("Sorry but the email could not be sent. Please go back and try again!");
}
}
また、スクリプトは電子メールを送信し、添付ファイルを含みますが、添付ファイルのサイズは0kbです。エラーが表示された場合、これは理にかなっています。
Warning: filesize(): stat failed for http://www.mysite.com/test.pdf in /customers/9/7/5/mysite.com/functions.php on line 712
Warning: fread(): Length parameter must be greater than 0 in /customers/9/7/5/mysite.com/functions.php on line 712
誰かがこの問題に取り組む方法についてもう少し情報を教えてもらえますか?