我正在尝试使用 PEAR Mail 通过 PHP 发送一封电子邮件,但尽管页面报告邮件已发送,但它从未到达(我将其发送给自己进行测试)。
我一直在研究如何处理错误,如果我打开严格的报告,我会收到大约六份报告:
Strict Standards: Non-static method PEAR::isError() should not be called statically, assuming $this from incompatible context in Blah Blah Blah! on line 450
Strict Standards: Non-static method PEAR::raiseError() should not be called statically, assuming $this from incompatible context in Blah Blah Blah! on line 451
在我的阅读中,我被告知这些错误不会阻止脚本成功,并且大多数人只是关闭严格的报告,但在我的情况下,脚本不起作用。
我尝试了以下方法来捕获错误...
try {
$host = "ssl://mail.example.com";
$port = 25;
$auth = true; // turn on SMTP authentication
$username = "name@example.com"; // SMTP username
$password = "password"; // SMTP password
$mail = Mail::factory('smtp',
array('host'=>$host,'port'=>$port,'auth'=>true,'username'=>$username,'password'=>$password));
$mail->send($to,$headers,$message);
} catch (Exception $e) {
echo "Exception: " . $e->getMessage();
}
echo "Message Successfully Sent!";
而且也没有尝试捕获并简单地使用......
if (PEAR::isError($mail)) {
echo("<p>" . $mail->getMessage() . "</p>");
} else {
echo("<p>Message successfully sent!</p>");
}
在这两种情况下,页面都会报告“电子邮件已成功发送!” 但邮件没有到达。如果我故意输入错误的用户名和密码或虚构的邮件服务器,则不会报告错误。
在这种情况下如何进行错误检查,如果我给它一个明显的错误,为什么脚本仍然会运行?
谢谢格雷格