#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.