Used to send Parse Server password reset and email verification emails with Amazon SES.
Read more here: https://github.com/ParsePlatform/parse-server.
Last tested with Parse Server v3.10
$ npm install parse-server-amazon-ses-adapter -SReplace the config with your info. You can find your AWS SES credentials here: http://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSGettingStartedGuide/AWSCredentials.html
var parse=new ParseServer({
//...
emailAdapter: {
module: "parse-server-amazon-ses-adapter",
options: {
from: "Your Name <noreply@yourdomain.com>",
accessKeyId: "Your AWS IAM Access Key ID",
secretAccessKey: "Your AWS IAM Secret Access Key",
awsEndpoint: "AWS end point. Defaults to `https://email.us-east-1.amazonaws.com`"
}
}
});