gpt4 book ai didi

php - Swiftmailer 4 不会将退回邮件检索为 $failedRecipients

转载 作者:行者123 更新时间:2023-12-04 06:17:57 25 4
gpt4 key购买 nike

我正在尝试此代码(来自 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);

问题是,如果我向坏域发送电子邮件,swiftmailer 会将其识别为正确发送的电子邮件,并且 $failedRecipients是空的。在我的邮箱中,我返回了失败通知。

为什么 Swiftmailer 不将此邮件识别为失败,并且不填充 $failedRecipients Array ?

最佳答案

Swiftmailer 只负责将电子邮件交给邮件服务器。其他一切都与 Swiftmailer 无关。

你得到的是一个退回邮件,你需要自己处理它们,因为电子邮件本身实际上是一个没有被第一台服务器拒绝的语法邮件地址。

顺便说一句,任何其他邮件库,甚至 php mail 都是如此。功能。您可能正在寻找退回处理应用程序或代码。

相关:Bounce Email handling with PHP?

关于php - Swiftmailer 4 不会将退回邮件检索为 $failedRecipients,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6995785/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com