flosight-api/plugins/config-emailstore.js
2015-04-30 17:41:11 -03:00

15 lines
290 B
JavaScript

var smtpTransport = require('nodemailer-smtp-transport');
// you can use Gmail or any other nodemailer transport
var auth = {
host: 'localhost',
port: 25,
ignoreTLS: true,
};
//
//
module.exports = {
confirmEmailHost: 'https://insight.bitpay.com',
email: smtpTransport(auth),
};