大家好我已经构建了一个简单的cron程序,它使用zend框架在php中运行。它定期向具有更新的网站成员发送电子邮件。当它通过电子邮件发送到特定的电子邮件时突然停止工作,它工作正常,我得到的只是这个错误消息:
PHP Fatal error: Uncaught exception 'Zend_Mail_Protocol_Exception' with message 'Unrouteable address ' in /web/content/library/Zend/Mail/Protocol/Abstract.php:431
为什么会发生这个特定的电子邮件?
电子邮件似乎很好,但它没有格式错误。另外,如何阻止这样的事情停止cron作业继续处理其他电子邮件。
答案 0 :(得分:0)
将它放在try catch块中怎么样?
答案 1 :(得分:0)
首先,您应该验证电子邮件地址,然后您应该尝试这样的catch块:
try {
/*
* Set up Testing environment for Smtp mail
* Handle Mail exceptions Different
*/
$mail = new Zend_Mail();
$mail->send();
} catch (Zend_Mail_Transport_Exception $ex) {
$this->addError('There was an error sending e-mail to the new admin !');
} catch (Exception $ex) {
$this->addError('There was an error processing your request');
}