【发布时间】:2012-01-15 21:49:36
【问题描述】:
我使用此代码使用 php 发送带有附件的电子邮件,但附件中有一些错误,因为我收到一封电子邮件并且附件出现在内容中。在我使用相同的代码并且它成功运行之前。为什么???
<?php
// sending email with attachments
function sendEmail($to,$from,$file,$ext){
$to = "admin@fuwant.com";
$from = "noor@fuwant.com";
$subject = "Translation Request";
$random_hash = md5(date('r', time()));
$headers = "From: sahar@fuwant.com\r\nReply-To: admin@fuwant.com";
$headers .= "\r\nContent-Type: multipart/mixed; boundary=\"PHP-mixed-".$random_hash."\"";
$attachment = chunk_split(base64_encode(file_get_contents("Test.doc")));
$output = "
--PHP-mixed-$random_hash;
Content-Type: multipart/alternative; boundary='PHP-alt-$random_hash'
--PHP-alt-$random_hash
Content-Type: text/plain; charset='iso-8859-1'
Content-Transfer-Encoding: 7bit
Hello World!
This is the simple text version of the email message.
--PHP-alt-$random_hash
Content-Type: text/html; charset='iso-8859-1'
Content-Transfer-Encoding: 7bit
<h2>Hello World!</h2>
<p>This is the <b>HTML</b> version of the email message.</p>
--PHP-alt-$random_hash--
--PHP-mixed-$random_hash
Content-Type: application/doc; name=Test.doc
Content-Transfer-Encoding: base64
Content-Disposition: attachment
$attachment
--PHP-mixed-$random_hash--";
$send = @mail($to, $subject, $output, $headers);
return $send;
}
?>
请帮忙。
【问题讨论】:
-
您的代码不值得修复。顺便说一句,缩进破坏了 MIME 标记。
标签: php email attachment