为什么我的PHP脚本在从标头设置时不发送电子邮件

时间:2015-03-25 10:52:19

标签: php sendmail email-headers

我有一个php脚本,只在用户注册时发送邮件。 我提出了以下内容:

$to ='testmail@gmail.com';
$message  = 'Hello';
$headers  = 'MIME-Version: 1.0' . "\r\n";
$headers .= 'Content-type: text/html; charset=iso-8859-1' . "\r\n";
$headers .= "From: Website <admin@example.com>\r\n";
if($results= mail($to, 'User Registration', 'Test', $headers)) {
  echo 'success';
} else {
  echo 'fail';
}

但电子邮件不会在服务器上发送。当我把以下一行:

$headers .= "From: Website <admin@example.com>\r\n";

为什么会这样?

1 个答案:

答案 0 :(得分:0)

您是否看过smtp configuration for php mail的答案,这与您的问题非常相似?