PHP - 有些电子邮件没有到达我的收件箱/垃圾邮件

时间:2015-04-18 08:50:01

标签: php email

页面如下: - http://www.coresdaventura.com/free-quote.php - http://www.coresdaventura.pt/orcamentos-gratis.php

这两个页​​面的代码相同:

$header = "Mime-version:1.0\n";
$header .= "Content-type: text/html;charset=iso-8859-1\n";
$header .= "From: " . $_POST['email'] . "<" . $_POST['email'] . ">\r\n";

$content = "<html>
            <style>
              //some style
            </style>
            <body>
              //some content
            </body>
            </html>";

$email = "example@coresdaventura.pt";

mail($email, utf8_encode("Subject example"), $content, $header);

有时客户与我们联系,说他们已向我们发送了一些电子邮件,但我们还没有收到(不在垃圾邮件文件夹中)。有什么想法吗?

注意:我们正在使用gmail平台发送我们公司的电子邮件(https://www.gmail.com/intl/en_us/mail/help/work.html

1 个答案:

答案 0 :(得分:-1)

您没有使用Gmail平台 - 您正在使用它(至少是其他服务器如何看待它)。

如果你想让它发挥作用,请使用PHP SMTP库,它允许你使用谷歌用户名和密码以及他们的SMTP服务器进行身份验证,从而使用他们的平台进行真实。