我正在尝试通过 PHP mail() 函数发送邮件,据我所知,该函数使用 sendmail 来交付货物。现在我的问题是 mail() 返回 true 但我的邮箱中甚至没有邮件的痕迹(是的,我也检查了垃圾邮件)。
所以我尝试从终端手动发送一些邮件,但问题仍然存在。sendmail 没有给我一个错误,除了我通过将我的开发机器的域添加到 /etc/hosts 并将其与 127.0.0.1 相关联来修复的无法确定域错误。
andreas@Andreas-PC-Ubuntu:~$ sendmail xxxxxxx@xxxxxxx.com
Test
.
andreas@Andreas-PC-Ubuntu:~$
除了没有给出错误之外,sendmail 还在 /var/log/mail.log 中记录了邮件已成功发送:
Apr 7 01:16:21 Andreas-PC-Ubuntu sendmail[11759]: q36NGIfD011759: from=andreas, size=5, class=0, nrcpts=1, msgid=<201204062316.q36NGIfD011759@home.hagenz.com>, relay=andreas@localhost
Apr 7 01:16:21 Andreas-PC-Ubuntu sm-mta[11760]: q36NGL1J011760: from=<andreas@home.hagenz.com>, size=299, class=0, nrcpts=1, msgid=<201204062316.q36NGIfD011759@home.hagenz.com>, proto=ESMTP, daemon=MTA-v4, relay=ip6-localhost [127.0.0.1]
Apr 7 01:16:21 Andreas-PC-Ubuntu sendmail[11759]: q36NGIfD011759: to=xxxxxxx@xxxxxxx.com, ctladdr=andreas (1000/1000), delay=00:00:03, xdelay=00:00:00, mailer=relay, pri=30005, relay=[127.0.0.1] [127.0.0.1], dsn=2.0.0, stat=Sent (q36NGL1J011760 Message accepted for delivery)
所以是的,有什么建议吗?