Skip to content

Latest commit

 

History

History
23 lines (17 loc) · 412 Bytes

Readme.md

File metadata and controls

23 lines (17 loc) · 412 Bytes

node-sendmail

Send mail without SMTP server

Install

npm install sendmail

Usage

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);
});