Sam
Sam

Reputation: 2341

Email Forwarding on Amazon Web Service SES

I'm trying to set up an email to go to my custom domain name, which I will call "mydomainname". Currently I can send emails to "[email protected]" and receive no error from sending the email, but the received email does not show up in my bucket or spam folder.

I've been following instructions on this github and this tutorial .

I don't understand what the github instructions mean for the instruction that states

"Modify the values in the config object at the top of index.js to specify the S3 bucket and object prefix for locating emails stored by SES. Also provide the email forwarding mapping from original destinations to new destination."

I've tried to guess at what that means by changing the index.js file to the as shown here enter image description here

I suspect there is an error in the code above,

As well, I receive the following error for the JSON in my lambda-basic-execution

enter image description here

And the error that I receive

enter image description here

.

.

.

I've included the following screenshots for reference

This is my recipient rule

enter image description here

This shows some information on the settings of my lambda page

enter image description here

enter image description here

Upvotes: 1

Views: 1538

Answers (1)

Tarun Lalwani
Tarun Lalwani

Reputation: 146620

The error you show is just a warning for the resource not existing, you should still be able to create the policy for the same.

See if you actually did create the policy and test it again.

Also make sure there are no invalid or duplicate rules which may be causing the issue

Upvotes: 1

Related Questions