|
|
|
|
|
by giu
1855 days ago
|
|
Looks good from a first look at it, congrats on launching it! Just checked if you mention bounces and saw that you track bounces; how does your app show / keep track of the bounces and more importantly of the bounce rate in general? I'm mentioning this since Amazon SES will place your account under review if your bounce rate is 5% or greater; you can find a few useful links on this comment thread: https://news.ycombinator.com/item?id=21955614 Best of luck with your app! Disclaimer: I was responsible for the implementation of an e-mail notification system using Amazon SES. |
|
You can subscribe to post backs from SES. These post back tell you message-by-message if a message was delivered/bounced.. so "simple" process of storing the results. Need to track the unique message ID, some you might get multiple responses for the same message (e.g. delivered, then marked spam)
There might also be a CLI call to get summary stats.