Send mail without SMTP server
npm install sendmail
sendmail = require('sendmail')();
sendmail({
from: '[email protected]',
to: '[email protected], [email protected], [email protected] ',
subject: 'test sendmail',
content: 'Mail of test sendmail ',
}, function(err, reply) {
console.log(err && err.stack);
console.dir(reply);
});