Hi Guest 1 HomePage 1 Jobs 1 WalkIn 1Articles  

 :) Latest Topic
Node.js Tutorial
Parts of Node.js
Features of Node.js
Install Node.js Windows
Install Node.js Linux
Node.js First Example
Node.js Console
Node.js REPL
Node.js NPM
Node.js CL Options1
Node.js CL Option2
Node.js Globals
Node.js OS
Node.js Timer
Node.js Errors
Node.js DNS
Node.js Net
Node.js Crypto
Node.js TLS/SSL
Node.js Debugger
Node.js Process
Node.js Process Example
Node.js Process Example2
Node.js Child Process
Child Process EXEC
Child Process SPAWN
Child Process Fork
Node.js Buffers
Node.js Streams
Node.js Reading Stream
Node.js Writing Stream
Node.js Piping Stream
Node.js Chaining Streams
Node.js File System Part1
Node.js File System Part2
Node.js File System Part3
Node.js Path
Node.js StringDecoder
Node.js Query String
Node.js ZLIB
Node.js Assertion
Node.js V8
Node.js Callbacks
Node.js Events
Node.js Punycode
Node.js TTY
Node.js Web Module
Node.js Upload Files
Node.js Email Send
Node.js BuiltIn Modules
Node.js Assert Code
Node.js Assert Function
Node.js console.time()
Node.js console.table()
Node.js DNS Code
Node.js cipher.final()
Node.js URL.hash API
Node.js URL.host API
 


  

 
Node.js Email Send
Question Posted on 02 May 2024

Home >> Tutorial >> Node.js Tutorial >> Node.js Email Send


Node.js Email Send

Node.js Email Send


In Node.js to send email module which is used that module name is "Nodemailer". And this module makes it very easy to send email from your computer. And before use of Modemailer module you can download by using npm as per the given command:-


npm install nodemailer



Once you download the Nodemailer module you need to include the module in any application:-


var nodemailer = require('nodemailer');




Code to send an Email
Now we jump to send emails from your server. ANd to send email you need to use the username and password from selected email provider to send an email. This below code to send email from Gmail account:-


var nodemailer = require('nodemailer');

var transporter = nodemailer.createTransport({
service: 'gmail',
auth: {
user: 'your_emailId@gmail.com',
pass: 'youremailid_password'
}
});

var mailOptions = {
from: 'your_emailId@gmail.com',
to: 'toemailid@yahoo.com',
subject: 'Send Email by using Node.js',
text: 'It is easy to send email!'
};

transporter.sendMail(mailOptions, function(error, info){
if (error) {
console.log(error);
} else {
console.log('Email sent: ' + info.response);
}
});



Once you done above code you can send emails through the email server.


Multiple Email Receivers
To send an email to more then one receiver we will add them to the "to" property of mailoptions object which is separated by commas:-


var mailOptions = {
from: 'your_emailId@gmail.com',
to: 'firstsample_email@yahoo.com, secondsample_email@yahoo.com',
subject: 'Sending Multiple user Email by using Node.js',
text: 'Very easy to send email!'
}




Send Email HTML Formatter
To send HTML formatted text in your email and we use the "HTML" property instead of text property in below code:-


var mailOptions = {
from: 'your_emailId@gmail.com',
to: 'SendEmailSample@yahoo.com',
subject: 'Sending Formated email by using Node.js',
html: '

Welcome Dear

Here is the email from node.js formatted!

'
}






Other Important Questions
Parts of Node.js
Install Node.js Linux
Node.js First Example
Node.js Globals
Node.js DNS







 
Top Searches:asp net questions vb net questions sql query uddl questions class javascript Questions sharepoint interview questions and concept silverlight questions and concept wcf questions beans general knowledge ajax questions
PHP | Biztalk | Testing | SAP | HR |