Skip to main content

Posts

Showing posts from January 17, 2019

Node.js Send Email

Node.js Send Email Node.js Nodemailer Module The Nodemailer module allowed you to send an email. Download and Install Nodemailer npm install nodemailer Import nodemailer module npm install upper-case Send an Email var nodemailer = require('nodemailer'); var transporter = nodemailer.createTransport({ service: 'gmail', auth: { user: 'youremail@gmail.com', pass: 'yourpassword' } }); var mailOptions = { from: 'youremail@gmail.com', to: 'myfriend@yahoo.com', subject: 'Sending Email using Node.js', text: 'That was easy!' }; transporter.sendMail(mailOptions, function(error, info){ if (error) { console.log(error); } else { console.log('Email sent: ' + info.response); } }); Please write comments if you find anything incorrect, or you want to share more information about the topic disc...

Node.js NPM

Node.js NPM What is NPM? NPM is a package manager for Node.js packages which hosts thousands of free packages. A package in Node.js contains all the files you need for a module. Download a Package Open terminal and run npm install package-name. npm install upper-case Please write comments if you find anything incorrect, or you want to share more information about the topic discussed above.