SES receive email not working.

0

I have configured ses receive email to store the email in my s3 bucket and also tried with invoking a lamda function(both not working)

Following the documents and stack overflow articles, I already have done and verified these steps yet no progress.

  1. verified everything is in the same region.
  2. verified the identity of domain with aws and also published the mx records on DNS.
  3. S3 or lamda functions are being tested correctly.
  4. rule sets are set to active.
  5. tried to send and receive the email from same domain yet no results.

Also, How to monitor if I am receiving email or there are any errors, I can't see any logs for the same.

1 Answer
1

Here are a few things you can check regarding your SES receiving emails issue:

  • Verify that the S3 bucket or Lambda function you are using are in the same region as your SES endpoint. All resources used for receiving must be in the same region.
  • Double check that you have created a receipt rule set and added a rule to send emails to your S3 bucket or invoke the Lambda function. Make sure to select this rule set as the active one.
  • Go through the receipt rule criteria and ensure it is configured to receive emails for your verified domain address. You can leave it blank to receive all emails.
  • Check that your DNS records like MX and SPF are correctly configured as per the SES documentation. Incorrect DNS settings can cause delivery issues.
  • As a test, try sending a simple text email from your domain address to see if it reaches the target. This will validate your basic receiving flow.

Unfortunately SES does not provide delivery logs for incoming emails. You may need to enable logging on the S3 bucket or Lambda function to troubleshoot where emails are failing to be received.

profile picture
EXPERT
answered 2 months ago

You are not logged in. Log in to post an answer.

A good answer clearly answers the question and provides constructive feedback and encourages professional growth in the question asker.

Guidelines for Answering Questions