I\'m trying to out a Meteor package to interface with AWS SES called tarang:email-ses
built by @Akshat.
I\'m on Meteor @1.* running on a AWS EC2 instance.
@brian-shamblen does not answer the question directly, but rather proposes an alternative solution to send emails.
You do not have to set up SMTP on AWS, nor you need to set environment variable inside your project process.env.MAIL_URL
.
Email.configSES({...})
{
"Version": "2012-10-17",
"Statement": [
{
"Effect": "Allow",
"Action": [
"ses:SendEmail",
"ses:SendRawEmail"
],
"Resource": "*"
}
]
}
Accounts.emailTemplates.from
. In order to verify domain in AWS, go to SES services -> Domains and follow instructions.This should let you send emails.