1.0.0 • Published 4 years ago

parse-server-aws-ses v1.0.0

Weekly downloads
8
License
MIT
Repository
github
Last release
4 years ago

Parse Server AWS SES Adapter

Send Parse Server emails with Amazon SES using the official AWS JS SDK.

Install

$ npm install parse-server-aws-ses --save

Usage

Replace the config with your info.

var parse=new ParseServer({
   //...
   emailAdapter: {
      module: "parse-server-aws-ses",
      options: {
         from: "Your Name <noreply@yourdomain.com>",
         region: "Your AWS Region"
      }
   }
});