今天想經過php發送郵件, php
根據手冊描述,發送html郵件須要指定header頭 html
<?php $header="MIME-Version: 1.0\r\n"; $header.="From:admin@xxx.com\r\n"; $header.="Content-Type:text/html;charset=utf-8\r\n"; $message="<html><body><a href='http://xxx.com'></a></body></html>"; mail('cxz@163.com','測試郵件標題',$message,'-fadmin@xxx.com');
結果發出的郵件仍是顯示源代碼,html並未生效,連header頭信息都看成文本顯示出來了。 post
覺得是postfix的緣由,百度了一通,無解。 測試
goole了一下,發現有老外的文章提到這個問題,解決辦法是: spa
header頭信息末尾不要用 \r\n,用PHP_EOL替代,以下: code
$header="MIME-Version: 1.0".PHP_EOL; $header.="From:admin@xxx.com".PHP_EOL; $header.="Content-Type:text/html;charset=utf-8".PHP_EOL;緣由,php下換行符是\n,win下換行符是\r\n,這裏PHP_EOL是換行符,根據不一樣的環境值不同。
手冊裏有提到: htm
If messages are not received, try using a LF (\n) only. Some poor quality Unix mail transfer agents replace LF by CRLF automatically (which leads to doubling CR if CRLF is used). This should be a last resort, as it does not comply with » RFC 2822. utf-8