1.0.0 • Published 6 years ago

node-red-contrib-nodemailer-adapter v1.0.0

Weekly downloads
190
License
MIT
Repository
github
Last release
6 years ago

#node-red-contrib-nodemailer-adapter

Node-Red node contrib node to send emails nodemailer. It is simple adapter for call nodemailer functions:

  • nodemailer.createTransport(transport)
  • transporter.sendMail(data)

##Install

Run the following command in the root directory of your Node-RED install

npm install node-red-contrib-nodemailer-adapter

##Usage The mailer node's call is equivalent this JavaScript code based on nodemailer:

var transporter = nodemailer.createTransport(transport)
transporter.sendMail(data)

Where the transport parameter as equals node's input field transport and the data parameter equals equals msg.payload. See nodemailer documentation for transporter and date formats.