- Newest
- Most votes
- Most comments
Based on your description, there are a few potential issues that could be causing the problems you're experiencing with Amazon SES bounces not registering and notifications not being received:
-
Return-Path and From address mismatch: Initially, you were using a different domain for the From address compared to the Return-Path. This can cause issues with bounce handling, as some email providers may send bounces to the From address instead of the Return-Path. It's good that you've now changed the From address to use the subdomain, which should help align with the Return-Path.
-
Notification configuration: Ensure that you have properly configured one method of receiving bounce and complaint notifications. Amazon SES requires this for sending emails. If you've disabled email feedback forwarding, you must enable notifications sent by Amazon SNS or use event publishing to an SNS topic or Firehose stream.
-
SNS topic configuration: If you're using SNS for notifications, make sure the SNS topic is in the same AWS region as the Amazon SES endpoint you're using to receive email.
-
Verification of notification email addresses: If you're expecting to receive notifications via email, ensure that the email addresses are verified with Amazon SES.
-
Dashboard updates: The Amazon SES dashboard may not update immediately. There could be a delay in reflecting bounce information.
To troubleshoot further:
- Double-check your SNS configuration and ensure the topic is correctly set up and subscribed.
- Verify that your application is correctly applying any configuration sets that contain event publishing rules to each email you send.
- If you're using the SES API, make sure you're properly handling the message ID returned when you send an email, as this can be useful for tracking purposes.
- Consider enabling feedback forwarding via email temporarily, which will forward the full bounce message to you, helping you diagnose the issue.
If these steps don't resolve the issue, you may need to contact AWS support for further assistance, as there could be account-specific configurations or limitations at play.
Sources
Receiving Amazon SES notifications through email - Amazon Simple Email Service
Amazon SES notification problems - Amazon Simple Email Service
Bounce action - Amazon Simple Email Service
I believe this may be solved at this point.
I corrected the earlier issue where the From field I was sending my emails with did not match the Return-Path. But besides that, I don't think that much changed. As of today, I can see in my webapp that bounces are being received, even though the SES or SNS dashboards do not indicate this activity. Very obscure, but everything seems to be working fine now!
Relevant content
- asked 4 years ago
- AWS OFFICIALUpdated 5 months ago

Also updated OP - thanks in advance!