0

我有一个注册/登录系统,其中一封带有激活码的电子邮件被发送到注册的电子邮件地址。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);

}

?> 
4

1 回答 1

0

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

于 2013-08-14T21:23:31.900 回答