aws-lambda-ses-forwarder
aws-lambda-ses-forwarder copied to clipboard
Number of retries
How many retries do forwarder to deliver the message to the final recipient if any? Can this number be increased? What if the recipient address is unavailable? Do messages get lost?
This tool is very simple and it doesn't solve retry when the script failed.
But, you can monitoring AWS Lambda and when fail, you can find a very detailed log in CloudWatch. And e-mail still keeps in S3, you can re-send it manually.
But when e-mail sending failed to Soft Bounce reason (for example: server temporarily unavailable), SES will be trying it again multiple times (more info).
But when e-mail sending failed to Soft Bounce reason (for example: server temporarily unavailable), SES will be trying it again multiple times
Well, yesterday it didn't do this and I had to re-send manually. Does non-existent address is a Soft Bounce reason? :)
This tool is very simple and it doesn't solve retry when the script failed.
Poor. All in all, I'm gonna rewrite your tool in Python :)
Does non-existent address is a Soft Bounce reason? :)
Soft are only temporary reasons. Non-existent recipient's address is clasifies as hard-bounce, because can not be assumed the mailbox will be created in five minutes.