我试图通过文件附件从我的服务器发送邮件,我的问题是邮件到达除了附件的内容之外的所有内容,我尝试了pdf,docx,jpeg ....无论我附加什么格式,生病了空白/空档。
我用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 = "demo@gmail.com";
$my_replyto = "demo@gmail.com";
//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 :(得分:0)
您是否尝试过使用PHPmailer? https://github.com/PHPMailer/PHPMailer
答案 1 :(得分:0)
5分钟之前,我确实遇到了同样的问题,结果我错过了将其添加到我的开始表格标签中。
enctype="multipart/form-data"