我有简单的代码用于在PHP中发送邮件,但我收到此错误
mail(): Multiple or malformed newlines found in additional_header
我确实用Google搜索了解决方案,我发现了很多,但似乎我真的无法理解!我不知道 也许是因为高级代码和我的解决方案很简单!
这是我的代码:
$nw_date=date("F j, Y");
$body="name: ".$name."\n email: ".$email."\n content: ".$msg."\n date: ".$nw_date;
$email="$email";
$tomail ="example@gmail.com";
$sub = "new message";
$fromail = "from: <".$email.">";
mail("$tomail", "$sub","$body", "$fromail");
如果有人让代码为我工作,我真的很感激! ..