Used to send Parse Server password reset and email verification emails with generic accounts like Gmail. This module uses the nodemailer library.
Read more here: https://github.com/ParsePlatform/parse-server.
Tested with Parse Server v2.2.13.
$ npm install parse-server-genericemail-adapter -S
Replace the config with your info.
var parse=new ParseServer({
//...
emailAdapter: {
module: "parse-server-genericemail-adapter",
options: {
service: "Gmail" // Could be anything like yahoo, hotmail, etc, Full list - https://github.com/nodemailer/nodemailer-wellknown
email: "[email protected]",
password: "Your password" //Hmm right now no other way
}
}
});
https://github.com/collinbrewer/parse-server-amazon-ses-adapter https://github.com/nodemailer/nodemailer https://github.com/ParsePlatform/parse-server