PHP电子邮件发送问题

时间:2014-03-20 23:23:45

标签: php email

我的联系表单正在发送电子邮件,但由于某些原因,我没有收到我的Gmail帐户中的电子邮件。我正在收到雅虎等其他电子邮件提供商的电子邮件。所以我认为我的标题存在问题。

$headers = 'From: ' .$email . "\r\n" .
'Reply-To: ' .$email . "\r\n" .
$headers .= 'MIME-Version: 1.0' . "\r\n";
$headers .= 'Content-type: text/html; charset=iso-8859-1' . "\r\n";

1 个答案:

答案 0 :(得分:12)

你有句号而不是分号

'Reply-To: ' .$email . "\r\n" .
                              ^

将其更改为:

$headers = 'From: ' .$email . "\r\n" .
'Reply-To: ' .$email . "\r\n";
$headers .= 'MIME-Version: 1.0' . "\r\n";
$headers .= 'Content-type: text/html; charset=iso-8859-1' . "\r\n";

打破了标题