Я пытаюсь использовать этот код (из 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
?