HTML电子邮件格式

时间:2012-04-05 01:02:55

标签: php email

  

可能重复:
  mail() header problem for html email

我在$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";

我的html在Gmail中看起来不错,但在Outlook中显示为原始html

我忘记了标题中的内容吗?

2 个答案:

答案 0 :(得分:0)

2007年展望(至少)。可以更改电子邮件格式。看看:工具>选项>电子邮件格式(标签)> Messageformat(选择框)>改为html

希望有所帮助。

答案 1 :(得分:0)

我在上面的评论中检查了@Shawn H.推荐的问题https://stackoverflow.com/a/2423592/1012061

其中一个答案说明了这一点:

“我遇到了一个非常类似的问题,尝试从你的回复中删除/ r并仅使用/ n。Outlook和远程邮件与/ r / n有问题。”

这很棒!