gmail不接收来自php send_mail的邮件

时间:2013-08-14 21:18:24

标签: php email gmail send

我有一个注册/登录系统,其中通过激活码将电子邮件发送到注册的电子邮件地址。 Outlook.com收到邮件等,但由于某种原因,Gmail不接收邮件。我不知道为什么。如果有人可以帮助我。

提前致谢

<?php

function send_mail($subject, $to, $text) {

$message = '

<html><body bgcolor="#f0f0f0">

<table width="720" border="0" cellspacing="0" cellpadding="0" align="center">

<tr>

<td><font style="font-family:Segoe UI, Arial; color:#0a0a0a;"><h1>Happitual</h1></font></td>

</tr>

<tr>

<td>

<font style="font-family:Segoe UI, Arial; color:#0a0a0a;">

<p>' . $text . '</p>

</font>

</td>

</tr>

<tr>

<td>

<font style="font-family:Segoe UI, Arial; color:#0a0a0a; font-size:12px;">

&copy All Rights Reserved. Happitual.

</font>

</td>

</tr>

</table>

</body></html>

';

// To send HTML mail, the Content-type header must be set

$headers = 'MIME-Version: 1.0' . "\r\n";

$headers .= 'Content-type: text/html; charset=iso-8859-1' . "\r\n";

$headers .= 'From: Happitual <welcome@happitual.com>' . "\r\n";

// Mail it

mail($to, $subject, $message, $headers);

}

?> 

1 个答案:

答案 0 :(得分:0)

我很乐意帮助你。但是,请您提供一份代码副本吗?您可能没有使用正确的语法或者mail()函数设置错误。你检查过标题了吗?你的MIME版本怎么样?请尽可能粘贴代码。