【发布时间】:2013-11-11 13:15:03
【问题描述】:
我有以下脚本:
<?php
$subject = "Testmail — Special Characters";
$msg = "Hi there,\n\nthis isn’t something easy.\n\nI haven’t thought that it’s that complicated!";
mail($to,$subject,$msg,$from."\nContent-Type: text/plain; charset=UTF-8\nContent-Transfer-Encoding: 8bit\n");
?>
在电子邮件中:
主题:Testmail ? Special Characters
主体:
Hi there,
this isn?t something easy.
I haven?t thought that it?s that complicated!
我尝试了很多东西,但我已经没有任何想法了。 你能帮助我吗?你有没有得到这个工作?
谢谢!
【问题讨论】:
标签: php email special-characters