Questions tagged [nodemailer]

Easy to use module to send e-mails with Node.JS

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

Nodemailer is Windows friendly, you can install it with npm on Windows just like any other module, there are no compiled dependencies. Use it from Azure or from your Windows box hassle free.

Installation:-

Install through NPM

npm install nodemailer

Useful Links:

2466 questions
4
votes
2 answers

Getting error in Mail send Using Nodemailer

I create a project and follow all step written in answer of Nodemailer/Gmail - What exactly is a refresh token and how do I get one? but i am error. I use following code: var smtpTransport = nodemailer.createTransport("SMTP", { service:…
user5440676
4
votes
1 answer

How to attach PDF to email in nodemailer?

I want to attach pdf reports to mail to users via nodemailer.I am using jquery in front end.