我有以下脚本:
<?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!
我尝试了很多东西,但我已经没有想法了。你能帮助我吗?你有没有得到这个工作?
谢谢!