Socket
Socket
Sign inDemoInstall

nodemailer

Package Overview
Dependencies
0
Maintainers
1
Versions
269
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    nodemailer

Easy to use module to send e-mails


Version published
Weekly downloads
3.7M
increased by2.28%
Maintainers
1
Install size
59.8 kB
Created
Weekly downloads
 

Package description

What is nodemailer?

Nodemailer is a module for Node.js applications to allow easy email sending. It supports various transport methods and has a simple setup process for sending emails.

What are nodemailer's main functionalities?

Send Emails

This feature allows you to send emails using Nodemailer. The code sample shows how to set up a transporter using Gmail, define mail options, and send an email.

const nodemailer = require('nodemailer');

let transporter = nodemailer.createTransport({
  service: 'gmail',
  auth: {
    user: 'your.email@example.com',
    pass: 'yourpassword'
  }
});

let mailOptions = {
  from: 'your.email@example.com',
  to: 'recipient@example.com',
  subject: 'Test Email Subject',
  text: 'Hello world?',
  html: '<b>Hello world?</b>'
};

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

HTML Email Content

Nodemailer allows you to send HTML content in your emails. The code sample demonstrates how to send an email with HTML content.

const nodemailer = require('nodemailer');

let transporter = nodemailer.createTransport({
  // transport configuration
});

let mailOptions = {
  from: 'your.email@example.com',
  to: 'recipient@example.com',
  subject: 'HTML Email',
  html: '<h1>Welcome</h1><p>That was easy!</p>'
};

transporter.sendMail(mailOptions, function(error, info){
  // callback
});

Attachments

Nodemailer supports sending attachments in emails. The code sample shows how to attach a file to an email.

const nodemailer = require('nodemailer');

let transporter = nodemailer.createTransport({
  // transport configuration
});

let mailOptions = {
  from: 'your.email@example.com',
  to: 'recipient@example.com',
  subject: 'Attachment',
  text: 'Please find the attachment.',
  attachments: [
    {
      filename: 'file.txt',
      path: '/path/to/file.txt'
    }
  ]
};

transporter.sendMail(mailOptions, function(error, info){
  // callback
});

Custom Transport Methods

Nodemailer allows the use of custom transport methods for sending emails. The code sample illustrates how to use a custom transport plugin.

const nodemailer = require('nodemailer');
const customTransport = require('my-custom-transport');

let transporter = nodemailer.createTransport(customTransport({
  // custom transport options
}));

// send mail with defined transport object
transporter.sendMail({
  // mail options
}, function(error, info){
  // callback
});

Other packages similar to nodemailer

Readme

Source

Nodemailer

Nodemailer is an easy to use module to send e-mails with Node.JS (using SMTP or sendmail).

You can use two ways to send an e-mail message: the EmailMessage constructor or the shortcut function send_mail(). The send_mail() function takes all the fields of the e-mail message as a function parameter and sends the e-mail immediately. EmailMessage allows to compose the message object first and send it later with its method send(). Nodemailers API is designed after Google App Engines Mail Python API.

Nodemailer is Unicode friendly ✔. You can use any characters you like.

Nodemailer supports

  • Unicode to use any characters
  • HTML contents as well as plain text alternative
  • Attachments
  • Embedded images in HTML
  • SSL (but not STARTTLS)

Installation

Install through NPM

npm install nodemailer

or download ZIP archive.

The source for Nodemailer is available at GitHub.

If you use NPM then the module is available as

var nodemailer = require('nodemailer');

but if you're using the source then

var nodemailer = require('./path_to_nodemailer/lib/mail');

Usage

Using send_mail()

var nodemailer = require("nodemailer");

nodemailer.send_mail({sender: "me@example.com", 
                      to:"you@example.com",
                      subject:"Hello!",
                      body:"Hi, how are you doing?"},
                      function(error, success){
                          console.log("Message "+(success?"sent":"failed"));
                      });
                      

Using EmailMessage

var nodemailer = require("nodemailer");

var mail = nodemailer.EmailMessage({
                      sender: "me@example.com", 
                      to:"you@example.com"
                      });
mail.subject = "Hello!";
mail.body = "Hi, how are you doing?";

mail.send(function(error, success){
              console.log("Message "+(success?"sent":"failed"));
          });

The callback function gets two parameters - error and success. If there's an error, then sending failed and you should check where's the problem. If there's no error value but success is not true then the server wasn't able to process the message correctly. Probably there was timeout while processing the message etc - in this case you should re-schedule sending this e-mail. If success is true then the message was sent successfully.

NB!

Before sending e-mails you need to set up SMTP server parameters.

nodemailer.SMTP = {
    host: "smtp.example.com", // required
    port: 25, // optional, defaults to 25 or 465
    use_authentication: false,
    user: "",
    pass: ""
}

Or alternatively if you don't want to use SMTP but the sendmail command then you could set property sendmail to true or as the path to sendmail.

nodemailer.sendmail = true;

or

nodemailer.sendmail = "/path/to/sendmail";

If sendmail is set, then SMTP options are disregarded.

See examples/example.js for a complete example.

SSL Support

If you want to use SSL (not TLS/STARTTLS, just SSL), you need to set the ssl parameter to true.

nodemailer.SMTP = {
    host: "smtp.gmail.com",
    port: 465,
    ssl: true,
    use_authentication: true,
    user: "my.username@gmail.com",
    pass: "my.password"
}

Nodemailer supports SSL support, with two big caveats:

  • You must be using nodejs v0.3+ and its TLS library
  • You must use SSL from the beginning, not TLS/STARTTLS negotiation

For example for Gmail use port 465 and server smtp.gmail.com (SSL) but not port 587 which is for STARTTLS and thus doesn't work.

E-mail Message Fields

The following are the possible fields of an e-mail message:

  • sender - The e-mail address of the sender. All e-mail addresses can be plain sender@server.com or formatted Sender Name <sender@server.com>
  • to - Comma separated list of recipients e-mail addresses that will appear on the To: field
  • cc - Comma separated list of recipients e-mail addresses that will appear on the Cc: field
  • bcc - Comma separated list of recipients e-mail addresses that will appear on the Bcc: field
  • reply_to - An e-mail address that will appear on the Reply-To: field
  • subject - The subject of the e-mail
  • body - The plaintext version of the message
  • html - The HTML version of the message
  • attachments - An array of attachment objects. Attachment object consists of two properties - filename and contents. Property contents can either be a String or a Buffer (for binary data). filename is the name of the attachment.

There's an optional extra field headers which holds custom header values in the form of {key: value}. These values will not overwrite any existing header but will be appended to the list.

mail_data = {
    sender:"me@example.com",
    to:"you@example.com",
    ....
    headers: {
        'X-My-Custom-Header-Value': 'Visit www.example.com for more info!'
    }
}

For debugging set debug to true - then all the data passed between the client and the server will be output to console.

Address Formatting

All the e-mail addresses can be plain e-mail address

username@example.com

or with formatted name (includes unicode support)

"Ноде Майлер" <username@example.com>

To, Cc and Bcc fields accept comma separated list of e-mails. Formatting can be mixed.

username@example.com, "Ноде Майлер" <username@example.com>, User Name <username@example.com>

Currently you can't use comma in a formatted name, even if the name is in quotes.

Creating HTML messages

Message body in HTML format can be set with the message field html. If property html has contents but plain text alternative body has not (is left to empty), then existing text from the html version is also used in the plaintext version (without the html formatting).

The charset for html is UTF-8.

nodemailer.send_mail({
    ...
    html: "<p>hello world!<br/>хелло ворлд!</p>"
});

Using Attachments

An e-mail message can include one or several attachments. Attachments can be set with the message field attachments which accepts a list of attachment objects.

An attachment object primarly consists of two properties - filename which is the name of the file (not a filepath to an actual file on disk etc.) that will be reported to the receiver as the attachments name; and contents to hold the data in a String or Buffer format. There's an additional property cid which can be used for embedding images in a HTML message.

Property filename is unicode safe.

var attachment_list = [
    {
        "filename": "attachment1.txt",
        "contents": "contents for attachment1.txt"
    },
    {
        "filename": "аттачмент2.bin",
        "contents": new Buffer("binary contents", "binary");
    }
];

nodemailer.send_mail({
    ...
    attachments: attachment_list
});

Using Embedded Images

Attachments can be used as embedded images in the HTML body. To use this feature, you need to set additional property of the attachment - cid (unique identifier of the file) which is a reference to the attachment file. The same cid value must be used as the image URL in HTML (using cid: as the URL protocol, see example below).

NB! the cid value should be as unique as possible!

var cid_value = Date.now()+".image.jpg";
var html = 'Embedded image: <img src="cid:'+cid_value+'" />';
var attachments = [{
    filename: "image.png",
    contents: IMAGE_CONTENTS,
    cid: cid_value
}];

Issues

Use Nodemailer Issue tracker to report additional shortcomings, bugs, feature requests etc.

TLS

Node.JS v0.3.x doesn't support changing to a secure channel in the middle of a connection (STARTTLS). So when a server requires authentication and this must be done over TLS it's a problem.

Charsets

Currently the only allowed charset is UTF-8.

Attachments

Do not use large attachments as the attachment contents are read into memory and the final message body is combined into one large string before sending.

License

Nodemailer is licensed under MIT license. Basically you can do whatever you want to with it.

Keywords

FAQs

Last updated on 08 Dec 2011

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc