This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| var nodemailer = require('nodemailer'); | |
| var sesTransport = require('nodemailer-ses-transport'); | |
| var smtpPassword = require('aws-smtp-credentials'); | |
| var mailOptions = { | |
| from: 'from@example.com', | |
| to: 'to@example.com', | |
| text: 'This is some text', | |
| html: '<b>This is some HTML</b>', | |
| }; |