作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试此代码(来自 http://swiftmailer.org/docs/sending.html ):
require_once 'lib/swift_required.php';
//Create the Transport
$transport = Swift_SmtpTransport::newInstance('localhost', 25);
//Create the Mailer using your created Transport
$mailer = Swift_Mailer::newInstance($transport);
//Create a message
$message = Swift_Message::newInstance('Wonderful Subject')
->setFrom(array('john@doe.com' => 'John Doe'))
->setBody('Here is the message itself')
;
//Send the message
$failedRecipients = array();
$numSent = 0;
$to = array('receiver@domain.org', 'other@baddomain.org' => 'A name');
foreach ($to as $address => $name)
{
$message->setTo(array($address => $name));
$numSent += $this->send($message, $failedRecipients);
}
printf("Sent %d messages\n", $numSent);
$failedRecipients
是空的。在我的邮箱中,我返回了失败通知。
$failedRecipients
Array
?
最佳答案
Swiftmailer 只负责将电子邮件交给邮件服务器。其他一切都与 Swiftmailer 无关。
你得到的是一个退回邮件,你需要自己处理它们,因为电子邮件本身实际上是一个没有被第一台服务器拒绝的语法邮件地址。
顺便说一句,任何其他邮件库,甚至 php mail
都是如此。功能。您可能正在寻找退回处理应用程序或代码。
相关:Bounce Email handling with PHP?
关于php - Swiftmailer 4 不会将退回邮件检索为 $failedRecipients,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6995785/
我正在尝试此代码(来自 http://swiftmailer.org/docs/sending.html ): require_once 'lib/swift_required.php'; /
我是一名优秀的程序员,十分优秀!