用PHP发送邮件不起作用

时间:2013-03-21 19:37:03

标签: php email

我对php很新,我最近尝试使用邮件功能,但它无法正常工作。这是我的代码:

<?php

// Pick up the form data and assign it to variables
$name = $_POST['name'];
$email = $_POST['email'];
$topic = $_POST['topic'];
$comments = $_POST['comments'];

// Build the email (replace the address in the $to section with your own)

$to = 'tishsny@gmail.com';
$subject = "New message: $topic";
$message = "$name said: $comments";
$headers = "From: $email";

// Send the mail using PHPs mail() function
if( mail($to, $subject, $message, $headers) ) header("Location:../forms/success.html");
else header( "Location:../forms/failure.html" );
?>

我将sendmail的路径添加到php.ini文件中,但它仍然无效。邮件功能总是返回true但我没有收到任何邮件。 mail.log显示了一堆超时。这是一些输出:

postfix/qmgr[3523]: BB800B124A: from=<_www@Leticias-MacBook-Pro.local>, size=382, nrcpt=1 (queue active)
postfix/qmgr[3523]: CB34EB0E9F: from=<_www@Leticias-MacBook-Pro.local>, size=405, nrcpt=1 (queue active)
postfix/qmgr[3523]: D6C18B0D7B: from=<_www@Leticias-MacBook-Pro.local>, size=394, nrcpt=1 (queue active)
postfix/smtp[3527]: connect to gmail-smtp-in.l.google.com[2607:f8b0:400e:c01::1b]:25: No route to host
postfix/smtp[3533]: connect to gmail-smtp-in.l.google.com[2607:f8b0:400e:c01::1b]:25: No route to host
postfix/pickup[3522]: 8A9EEB1823: uid=70 from=<_www>
postfix/cleanup[3524]: 8A9EEB1823: message-id=<20130321193156.8A9EEB1823@Leticias-MacBook-Pro.local>
postfix/qmgr[3523]: 8A9EEB1823: from=<_www@Leticias-MacBook-Pro.local>, size=392, nrcpt=1 (queue active)
postfix/smtp[3526]: connect to mx3.hotmail.com[65.55.37.72]:25: Operation timed out
postfix/smtp[3531]: connect to gmail-smtp-in.l.google.com[74.125.141.27]:25: Operation timed out
postfix/smtp[3531]: connect to gmail-smtp-in.l.google.com[2607:f8b0:400e:c01::1b]:25: No route to host
postfix/smtp[3531]: connect to alt1.gmail-smtp-in.l.google.com[2607:f8b0:400e:c02::1b]:25: No route to host

3 个答案:

答案 0 :(得分:0)

你可以发布你的php.ini smtp部分吗?

如果您正在使用GMail(看起来像是......),您将需要使用SSL / TLS,而我不知道PHP是否支持本机SMTP。您可以将转发器与Sendmail一起使用并以未加密的方式在本地发送,然后让Sendmail通过TLS在Gmail上转发它。

您可能需要考虑使用像PHPMailer这样的第三方解决方案。它支持Gmail的SSL / TLS,请查看此示例:

http://phpmailer.worxware.com/index.php?pg=examplebgmail

您可以从以下网址下载PHPMailer:

http://sourceforge.net/projects/phpmailer/

这是PHPMailer的另一个教程:

http://phpmailer.worxware.com/index.php?pg=tutorial#2

编辑:正如Mark所说,您的ISP可能阻止了出站端口25. Gmail还支持端口465上的SMTP(但同样需要TLS)。

答案 1 :(得分:0)

您的ISP和/或您的网络/主机的防火墙似乎不允许出站SMTP连接。您没有理由看到有关操作超时无路由到主机的错误。

答案 2 :(得分:0)

以下是一些可能的原因:

  1. 您的ISP(Verizon,AT&amp; T,Comcast或您的学校等)阻止了您的出站端口(以防止垃圾邮件和网络攻击)。
  2. 这是最可能的情况。基本上,您不能在家庭网络上将电子邮件作为电子邮件“主机”发送。您可以在过去通过gmail或其他SMTP服务器设置中继服务器,但最近ISP变得更智能并阻止了中继请求(是的,它们会读取您发送或接收的每个数据)。

    所以我的建议是:如果您愿意这样做,可以支付安全的VPN费用。

    1. 您不在家庭网络中,但是中继服务器/路由器会阻止您的出站请求。您必须找到一种在防火墙中转发端口的方法。根据路由器或中继服务器的操作系统/固件,可能有数百万种不同的转发端口的方式。或者您可以完全关闭防火墙。

    2. 完全不在你手中。您的IP被标记为spambot(很可能有人窃取了您的IP并将其用于网络攻击)。您将不得不更改您的IP(或支付安全的VPN)。