This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var _ = require("lodash"); | |
var emailServerConfig = { | |
type: "Mantrill", | |
otions: { | |
auth: { | |
user: "XXX", // your email that you used to register at Mandrill | |
pass: "XXXXX" // At the user panel you create a password to use with your login | |
} | |
}; | |
var Nodemailer = require("nodemailer"); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var _ = require("lodash"); | |
var emailServerConfig = { | |
type: "Gmail", | |
otions: { | |
auth: { | |
user: "XXX", // your gmail | |
pass: "XXXXX" // user passoword | |
} | |
}; | |
var Nodemailer = require("nodemailer"); |
NewerOlder