2 Answers
- Newest
- Most votes
- Most comments
0
Hi, you can take a look at this article to find bounced mails - https://aws.amazon.com/blogs/messaging-and-targeting/handling-bounces-and-complaints/
0
If you're comfortable with writing a little code then you could use SQS for this. When sending the emails, instead of going directly into SES and doing the actual send, add the email and its content into an SQS queue. You can comfortably push hundreds or even thousands of these into SQS without any trouble whatsoever. Then have another process which could in fact be built using Lambda which grabs a handful from the queue and sends the email. This way you can delay the sending so they'll all get sent out but over an extended period of time.
answered 2 years ago
Relevant content
asked 4 years ago
asked 5 years ago
- AWS OFFICIALUpdated a year ago
- AWS OFFICIALUpdated a year ago

Thanks @ravidg for the reply. can you also guide me on how to efficiently send a large number of emails (more than sending rate) within a limited timeframe ?