diff --git a/config/mailconfig.js b/config/mailconfig.js index 2adffb4..a215dc0 100644 --- a/config/mailconfig.js +++ b/config/mailconfig.js @@ -1,14 +1,14 @@ /*jshint esversion: 6*/ // refer nodemailer for more info -var transporterStr = 'smtps://user%40gmail.com:pass@smtp.gmail.com'; +var transporterStr = 'smtps://user%40gmail.com:password@smtp.gmail.com'; var mailOptions = { from: '"Fred Foo 👥" ', // sender address to: 'bar@blurdybloop.com, baz@blurdybloop.com', // list of receivers - subject: 'Hello ✔', // Subject line - text: 'Hello world 🐴', // plaintext body - html: 'Hello world 🐴' // html body + subject: 'Job Test#21 Executed ✔', // Subject line + text: 'Test#21 results attached 🐴', // plaintext body + html: 'Test#21 🐴 results attached' // html body }; if (typeof window === 'undefined') {