當我使用PHP發送郵件時,它在Gmail中顯示正確,但在Outlook中顯示正確。這是一封帶有PDF附件和一些文本的郵件。 PDF使用fpdf創建並作爲附件發送,這在Gmail和Outlook中運行良好。PHP郵件在Gmail中打開,但不在Outlook中
唯一的問題是,在Gmail中電子郵件的文本顯示正確,在Outlook中它只是一個空白頁面,文本是一個額外的附件。
這裏是我的代碼:
// encode data
$pdfdoc = $pdf->Output("", "S");
$attachment = chunk_split(base64_encode($pdfdoc));
// email stuff (change data below)
$to = $contactEmail;
$from = $myEmail;
$subject = "MySubjectHere";
$message = '<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html><head></head><body>
<p>Hi '$contactName.',</p><br>
<p>Please find your pdf attached per your request.</p>
<p>Feel free to call or email if you have any questions.</p>
<p>Kind regards,</p><br>
<p>MyNameHere</p>
<p><strong>Manager</strong></p>
<img alt="image" src="http://LinkToImage.png"/>
<p style="color:#76923c;">
<strong>P:</strong> 01 2345 6789|
<strong>W:</strong> <a href="http://www.example.com" target="_blank">www.example.com</a></p>
<p style="color:#76923c;">
<strong>A:</strong> 94 Test Street.
</p></body></html>';
// a random hash will be necessary to send mixed content
$separator = md5(time());
// carriage return type (we use a PHP end of line constant)
$eol = PHP_EOL;
// attachment name
$filename = $id."_".str_replace(" ","_",$Name).'.pdf';
// main header
$headers = "From: ".$from.$eol;
$headers .= "Bcc: ".$from.$eol;
$headers .= "MIME-Version: 1.0".$eol;
$headers .= "Content-Type: multipart/mixed; boundary=\"".$separator."\"";
// no more headers after this, we start the body! //
$body = "--".$separator.$eol;
$body .= "Content-Transfer-Encoding: 7bit".$eol.$eol;
// message
$body .= "--".$separator.$eol;
$body .= "Content-Type: text/html; charset=\"iso-8859-1\"".$eol;
$body .= "Content-Transfer-Encoding: 8bit".$eol.$eol;
$body .= $message.$eol;
// attachment
$body .= "--".$separator.$eol;
$body .= "Content-Type: application/octet-stream; name=\"".$filename."\"".$eol;
$body .= "Content-Transfer-Encoding: base64".$eol;
$body .= "Content-Disposition: attachment".$eol.$eol;
$body .= $attachment.$eol;
$body .= "--".$separator."--";
// send message
mail($to, $subject, $body, $headers);
我有問題。你將如何使用PHP發送和接收電子郵件給Outlook?謝謝 – User014019 2014-11-13 07:09:41
是的,你會的。你只需要確保頭部是正確的,並且在消息結尾處有兩行結束符。 如果你的結構是正確的,你將能夠在所有客戶端查看郵件。 – 2014-11-13 13:42:05
如何?我嘗試發送電子郵件到Outlook,但我沒有收到任何東西。我應該把SMTP服務器和端口? – User014019 2014-11-14 04:00:39