Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Swift Mailer Delivery Status

Does anyone know if SwiftMailer send function returns delivery status? I would like to be able to know that email was delivered or not delivered.Is this possible?

Thanks

like image 904
DavidW Avatar asked Apr 24 '11 03:04

DavidW


1 Answers

There are at least three layers of checks that SwiftMailer supports, that will report several types of delivery failures.

1) Always check the return code from SwiftMailer's send() or batchSend() commands for a non-zero result. From the documentation:

//Send the message $numSent = $mailer->send($message);  printf("Sent %d messages\n", $numSent);  /* Note that often that only the boolean equivalent of the    return value is of concern (zero indicates FALSE)  if ($mailer->send($message)) {   echo "Sent\n"; } else {   echo "Failed\n"; } 

2) Use the failures-by-reference feature to know if specific address(es) were rejected or couldn't complete:

//Pass a variable name to the send() method if (!$mailer->send($message, $failures)) {   echo "Failures:";   print_r($failures); }  /* Failures: Array (   0 => [email protected],   1 => [email protected] ) */ 

3) In a few situations you might want to enable return receipts as well, which confirm that an email reader displayed the message. They often are disabled or ignored by users or their email apps, but if you get a receipt, it is highly confirmatory. Note also that this might occur many days after sending so it's not a real-time synchronous test like the two above.

$message->setReadReceiptTo('[email protected]'); 

However, since there are so many variables and layers of systems involved in SMTP delivery, it is not generally possible to be absolutely sure messages were delivered. The best you can do is make sure you're using the first two checks above. If you're using YOUR own server for the SMTP service, then you ALSO need to be watching your logs and queues as Marc B mentioned.

One other example that emphasizes the need to get familiar with whatever underlying email system you're using. I've just started using the Swift_AWSTransport by John Hobbs for Amazon Web Services SES. SES has the ability to return an XML response with diagnostic information for each message sent through it. Though SwiftMailer doesn't inherently understand how to use that XML response, I have found it invaluable for troubleshooting delivery. I mention it because I found that in some cases, checks #1 and #2 above will appear successful to SwiftMailer, yet SES didn't like something about my message formatting. I'm therefore looking into parsing that XML as an additional check.

like image 200
ybull Avatar answered Sep 21 '22 05:09

ybull