easymailer

1.0.0 • Public • Published

easymailer

a simple smtp mailer base on node mailer

useage

This is a complete example to send an e-mail with plaintext and HTML body

var nodemailer = require("nodemailer");
 
// create reusable transport method (opens pool of SMTP connections)
var smtpTransport = nodemailer.createTransport("SMTP",{
    service: "Gmail",
    auth: {
        user: "gmail.user@gmail.com",
        pass: "userpass"
    }
});
 
// setup e-mail data with unicode symbols
var mailOptions = {
    from: "from@qq.com", // sender address
    to: "test@qq.com", // list of receivers
    subject: "Hello ✔", // Subject line
    text: "Hello world ✔", // plaintext body
    html: "<b>Hello world ✔</b>" // html body
}
 
// send mail with defined transport object
smtpTransport.sendMail(mailOptions, function(error, response){
    if(error){
        console.log(error);
    }else{
        console.log("Message sent: " + response.message);
    }
 
    // if you don't want to use this transport object anymore, uncomment following line
    //smtpTransport.close(); // shut down the connection pool, no more messages
});

Versions

Current Tags

  • Version
    Downloads (Last 7 Days)
    • Tag
  • 1.0.0
    0
    • latest

Version History

  • Version
    Downloads (Last 7 Days)
    • Published
  • 1.0.0
    0

Package Sidebar

Install

npm i easymailer

Weekly Downloads

0

Version

1.0.0

License

ISC

Last publish

Collaborators

  • hunger