Use smtp client to send email without providing password
问题 I'm using nodemailer to try to send an email to myself via commandline: var nodemailer = require('nodemailer'); // config var smtpConfig = { host: 'smtp.myhost.com', port: 465, secure: false, // dont use SSL tls: {rejectUnauthorized: false} }; // create reusable transporter object using the default SMTP transport var transporter = nodemailer.createTransport(smtpConfig); // setup e-mail data with unicode symbols var mailOptions = { from: '"Fred Foo 👥" <foo@blurdybloop.com>', // sender address