我一直在努力尝试使用PHP发送带附件的电子邮件。它曾经工作,但邮件正在被打乱。现在我已经让消息体工作,但附件会破坏。我以前使用base64编码的消息体,但现在使用7位。谁能告诉我我做错了什么?
PS请不要告诉我,我应该使用预制课程来完成这项工作。我尝试了几个,但都没有成功。如果我不克服这些问题,我将永远不会学会如何正确地做到这一点。感谢
//define the receiver of the email
$to = 'a@something.co.uk';
//define the subject of the email
$subject = 'Your Disneyland Paris entry';
//create a boundary string. It must be unique
//so we use the MD5 algorithm to generate a random hash
$random_hash = md5(date('r', time()));
//define the headers we want passed. Note that they are separated with \n
$mime_boundary = "<<<--==+X[".md5(time())."]";
$path = $_SERVER['DOCUMENT_ROOT'].'/two/php/';
$fileContent = chunk_split(base64_encode(file_get_contents($path.'CTF_brochure.pdf')));
$headers .= "From: info@blah.org.uk <info@blah.org.uk>"."\n";
$headers .= "MIME-Version: 1.0\n" .
"Content-Type: multipart/mixed;\n" .
" boundary=\"{$mime_boundary}\"";
$message = "This is a multi-part message in MIME format.\n";
$message .= "\n";
$message .= "--".$mime_boundary."\n";
$message .= "Content-Type: text/plain; charset=\"iso-8859-1\"\n";
$message .= "Content-Transfer-Encoding: 7bit\n";
$message .= "\n";
$message .= "messagebody \n";
$message .= "--".$mime_boundary."" . "\n";
$message .= "Content-Type: application/octet-stream;\n";
$message .= " name=\"CTF-brochure.pdf\"" . "\n";
$message .= "Content-Transfer-Encoding: 7bit \n";
$message .= "Content-Disposition: attachment;\n";
$message .= " filename=\"CTF_brochure.pdf\"\n";
$message .= "\n";
$message .= $fileContent;
$message .= "\n";
$message .= "--".$mime_boundary."--\n";
//send the email
$mail_sent = mail($to, $subject, $message, $headers);
//if the message is sent successfully print "Mail sent". Otherwise print "Mail failed"
echo $mail_sent ? "Mail sent" : "Mail failed";
答案 0 :(得分:7)
我可能错了,但我相信你必须以某种方式对PDF进行编码,7bit将无效,因为PDF文件的内容超出了范围。为什么不使用base64作为PDF?
答案 1 :(得分:1)
如果您想复杂的电子邮件,我建议您查看phpmailer。
答案 2 :(得分:1)
我知道你已经说过预建课程,但人们有理由这样做 - 为什么重新发明轮子?我使用SwiftMailer进行项目 - 它不可能更简单。有关如何创建消息,添加附件和发送的13行(包括一些空白行),请参阅this SwiftMailer example。
至于你的实际查询的分辨率,请给Josh的回答 - 我会再次改变编码并看看你是如何进行的。您是否尝试过获取具有附件的示例电子邮件,并检查原始数据?