Home > database >  how to receive emails using the aws ses and aws sns?
how to receive emails using the aws ses and aws sns?

Time:02-23

I am trying to receive emails on a domain email like [email protected] and I have done the following steps to get the results but am unable to get that.

Firstly, I have created an SNS topic and linked that SNS topic with HTTPS protocol to a rest API to receive the incoming email details. And then in SES firstly I have verified the domain and then in the email receiving section I have created a rule set and activated that rule set and I have not added recipient condition and in the action I am using AWS SNS topic and same topic which I have created for this email receiving. But I am not able to receive the email content to the endpoint which I have linked to SNS topic. I have added the MX record in Cloudflare DNS and I am using us-east1 for value endpoint.

How can I implement this?

CodePudding user response:

Check your destination rules, if you need receive all traffic domain add your naked domain: example.com, if you need receive traffic for specific address: [email protected], also check if You have more than one MX record, if You have two or more setup priority for SES.

  • Related