mail():在additional_header中找到多个或格式错误的换行符

时间:2015-10-28 13:34:48

标签: php

我有简单的代码用于在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");

如果有人让代码为我工作,我真的很感激! ..

0 个答案:

没有答案