重複の可能性:
HTML メールの mail() ヘッダーの問題
私は次のものを使用しています$headers
:
$headers = "MIME-Version: 1.0\r\n";
$headers .= "Content-Type: text/html; charset=ISO-8859-1\r\n";
$headers .= "From: " . $from . "\r\n";
$headers .= "Reply-To: ". $from . "\r\n";
$headers .= "CC: me@site.com\r\n";
Gmailhtml
では問題ないように見えますがhtml
、Outlook では raw として表示されます。
ヘッダーの何かを忘れましたか?