Send Mail in Node Js

node js
mail
npm module

Node mailer used to send emails to the user, this node mailer available in node modules.

npm install nodemailer --save

In short, what you need to do to send messages, would be the following:

  • Create a Nodemailer transporter using either SMTP or some other transport mechanism
  • Set up message options (who sends what to whom)
  • Deliver the message object using the sendMail() method of your previously created transporter

This is a complete example to send an email with plain text and HTML body

'use strict';
const nodemailer = require('nodemailer');

// create reusable transporter object using the default SMTP transport
let transporter = nodemailer.createTransport({
    service: 'gmail',
    auth: {
        user: 'gmail.user@gmail.com',
        pass: 'yourpass'
    }
});

// setup email data with unicode symbols
let mailOptions = {
    from: '"Abc Xyz" <abc@xyz.com>', // sender address
    to: 'def@ghi.com, klm@nop.com', // list of receivers
    subject: 'Hello Subject', // Subject line
    text: 'Hello world Body?', // plain text body
    html: '<b>Hello world ?</b>' // html body
};

// send mail with defined transport object
transporter.sendMail(mailOptions, (error, info) => {
    if (error) {
        return console.log(error);
    }
    console.log('Message %s sent: %s', info.messageId, info.response);
});

 

 

You might also like:

Sanitization in java sript

14-03-2017 sanitization java script

How to make an http request in node js

14-03-2017 http module node js

Convert Time 24 hrs to 12 hrs format In javascript

12-03-2017 date javascript 12hrs convert

How to remove last / value from url in javascript

27-02-2017 array javascript last value

Send Mail in Node Js

21-02-2017 node js mail npm module