pannu
pannu

Reputation: 538

Get List of Suppression Email Address

Is there a way to get bounced emails since last week. Platform that I am targeting is Amazon SES. If we can get the list of email addresses that were bounced since last week through amazon management console. I know it provides us with the number of emails but which emails were bounced and were listed to the suppression list.

Upvotes: 0

Views: 2375

Answers (2)

Alok
Alok

Reputation: 10594

You can use AWS CLI for exporting email suppression list

aws sesv2 list-suppressed-destinations --query 'SuppressedDestinationSummaries[*].[EmailAddress,Reason,LastUpdateTime]' --output text > suppression_list.txt

this will generat TSV(Tab Seperated values) file.

Upvotes: 0

Mohan Shanmugam
Mohan Shanmugam

Reputation: 690

Your question been addressed in amazon blog.

https://aws.amazon.com/blogs/ses/tag/abuse-complaint/

Make sure you are following the procedure to handle bounces and complaints from amazon aws.

Additional links for reference

http://docs.aws.amazon.com/ses/latest/DeveloperGuide/notification-examples.html

http://docs.aws.amazon.com/ses/latest/DeveloperGuide/monitor-sending-activity.html

Upvotes: -2

Related Questions