1 Answer
- Newest
- Most votes
- Most comments
1
Hello,
Suppression list in AWS SES avoids sending emails to addresses that have previously resulted in bounce or complaint events. This feature is designed to protect the sender’s reputation and enhance message delivery rates.
To view the list of emails that are under SES Suppression List, you run the following AWS CLI command:
aws sesv2 list-suppressed-destinations
To list specific address that are in suppression list:
aws sesv2 list-suppressed-destinations | grep -A2 'example.com'
To remove email addresses from SES suppression list: https://repost.aws/knowledge-center/ses-remove-email-from-suppresion-list
References:
Relevant content
- asked 3 years ago
- asked 7 months ago
Thank you for a direct and succinct solution, and the two references to AWS documentation. Is there a similar method for the default opt-out list for Pinpoint SMS?