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:
How To Get Your Blogs Posts Using Blogger API30-07-2017 blogger api json php |
How to insert bulk information into database in single query execution18-03-2017 insert sql bulk database |
Using slice remove last two characters from given string07-03-2017 slice remove |
Filter for replace text in Angular Js05-03-2017 filter replace angular js |
Get Unique values from array/object in javascript19-02-2017 javascript unique remove repeated values from array |