Nodemailer and Amazon SES
My structure: site -- node_modules ---- nodemailer -- webclient ---- js ------- controller.js site/node_modules/nodemailer site/webclient/js/controller.js site/webclient/js/controller.js: var nodemailer = require('../../node_modules/nodemailer'); var transport = nodemailer.createTransport('SES', { AWSAccessKeyID: 'xxx', // real one in code AWSSecretKey: 'xxx', // real one in code ServiceUrl: 'email-smtp.us-west-2.amazonaws.com' }); var message = { from: 'example@mail.com', // verified in Amazon AWS SES to: 'example@mail.com', // verified in Amazon AWS SES subject: 'testing', text: 'hello',