是php的新手。我需要发送带有pdf附件的电子邮件。我可以发送附带附件的电子邮件。但是无法打开pdf。我得到了像这样的错误
将信息存储到数据库(完成),向员工发送包含新客户信息(已完成)的电子邮件,并向客户发送带有pdf文件附件(不工作)的“谢谢消息”电子邮件。我的意思是,客户确实收到了一封电子邮件,但是当他/她打开pdf文件时,我收到以下错误消息:
“Acrobat无法使用'file_name',因为它不是受支持的文件类型,或者因为文件已损坏(例如,它是作为电子邮件附件发送而未正确解码)......”< / p>
如果有人可以帮我解决这个问题,那就太好了。谢谢!
这是我的代码:
$to = 'form@kronova.in, ' . $Email;
$subject = 'ABC :: Admission Form Details';
$repEmail = 'form@kronova.in';
$fileName = 'ABC-Admission.pdf';
$fileatt = $pdf->Output($fileName, 'E');
$attachment = chunk_split($fileatt);
$eol = PHP_EOL;
$separator = md5(time());
$headers = 'From: Principal abc <'.$repEmail.'>'.$eol;
$headers .= 'MIME-Version: 1.0' .$eol;
$headers .= "Content-Type: multipart/mixed; boundary=\"".$separator."\"";
$message = "--".$separator.$eol;
$message .= "Content-Transfer-Encoding: 7bit".$eol.$eol;
$message .= "Thanks for filling online application form. Your online admission registration number is E0000". mysql_insert_id() . "." .$eol;
$message .= "--".$separator.$eol;
$message .= "Content-Type: text/html; charset=\"iso-8859-1\"".$eol;
$message .= "Content-Transfer-Encoding: 8bit".$eol.$eol;
$message .= "--".$separator.$eol;
$message .= "Content-Type: application/pdf; name=\"".$fileName."\"".$eol;
$message .= "Content-Transfer-Encoding: base64".$eol;
$message .= "Content-Disposition: attachment".$eol.$eol;
$message .= $attachment.$eol;
$message .= "--".$separator."--";
if (mail($to, $subject, $message, $headers)){
echo "Email sent";
}
else {
echo "Email failed";
答案 0 :(得分:0)
我建议使用一个框架为你做繁重的工作。看看Zend框架2.你想要实现的是几行代码。
文档非常详尽。请查看此页面上的快速入门指南。
http://framework.zend.com/manual/2.3/en/modules/zend.mail.message.html
正如其他人所建议的那样,直接使用邮件功能既麻烦又容易出错,并且只会导致更多问题。
答案 1 :(得分:0)
仅将application/pdf
更改为application/octet-stream