You will need to grant SES permissions via IAM;
- From the AWS console, click on IAM
- Locate and click on the role you use with your Lambda functions, such as "lambda_basic_execution"
- Click the "Attach Policy" button
- For a quick demo, filter on "ses" and attach the AmazonSESFullAccess policy.
- For a production scenario, choose a more fine-grained policy granting access to certain resources.
- SES email recipients must first respond to a verification email you send, before receiving further emails from SES.
- Review
- Modify the source and destination email addresses, and the body text.
*You can learn more about SES from the [Getting Started with SES](http://docs.aws.amazon.com/ses/latest/DeveloperGuide/getting-started.html) documentation.*
Back to the Home Page