From b88da6cf8784c8b6446fefc8c87f2657cde616c8 Mon Sep 17 00:00:00 2001 From: alseambusher Date: Wed, 14 Dec 2016 19:13:44 +0530 Subject: [PATCH] adding better default mail config --- config/mailconfig.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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') {