Skip to content

Latest commit

 

History

History
 
 

nodeMailer

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 

NodeMailer

What is NodeMailer ?

  • Nodemailer is a module for Node. js applications to allow easy as cake email sending.

Install:

  • We can install NodeMailer from terminal using the command npm install nodemailer or,
  • We can install NodeMailer from npm

Feature of NodeMailer

  • A single module with zero dependencies – code is easily auditable, as there are no dark corners
  • Unicode support to use any characters, including emoji 💪
  • Use HTML content, as well as plain text alternative
  • Add Attachments to messages
  • Embedded image attachments for HTML content – your design does not get blocked
  • Secure email delivery using TLS/STARTTLS
  • Different transport methods in addition to the built-in SMTP support
  • Sign messages with DKIM
  • Custom Plugin support for manipulating messages
  • Sane OAuth2 authentication
  • Proxies for SMTP connections
  • ES6 code – no more unintentional memory leaks, due to hoisted var’s
  • Autogenerated email test accounts from Ethereal.email
  • For more information visit official documentation