From 058152aca4f585d522801999a02e243e313e3d17 Mon Sep 17 00:00:00 2001 From: jkaplon Date: Mon, 13 Jul 2015 19:19:46 -0400 Subject: [PATCH] Use new alertmonitorfl Gmail addy to send email on any message that includes 'alert', closes issue #10 --- server.js | 26 ++++++++++++++------------ 1 file changed, 14 insertions(+), 12 deletions(-) diff --git a/server.js b/server.js index de3ae15..b842ed3 100644 --- a/server.js +++ b/server.js @@ -11,15 +11,15 @@ var logfile = fs.createWriteStream('./db/log.log', {flags: 'a'}); var transporter = nodemailer.createTransport({ service: 'Gmail', auth: { - user: 'jkU8K5lrog9w@gmail.com', - pass: 'NSLQZ~d6Zb~LLv8#t' + user: 'alertmonitorfl@gmail.com', + pass: '6g*hkvVc%91oo3#$' } }); var mailOptions = { - from: 'Alert Monitor ', + from: 'Alert Monitor ', to: 'jody@kaplon.us', subject: 'Alert received', - text: 'test alert' + text: 'test alert' // Get custom text in here with device info. }; @@ -117,14 +117,16 @@ app.post('/', function(req, res){ ); stmt.finalize(); - // Emails were working...don't need to send on every POST anymore. - //transporter.sendMail(mailOptions, function(error, info){ - //if(error){ - //console.log(error); - //}else{ - //console.log('Message sent: ' + info.response); - //} - //}); + // Send emails on alerts only + if(JSON.stringify(req.body, null, 4).indexOf('alert') > -1){ + transporter.sendMail(mailOptions, function(error, info){ + if(error){ + console.log(error); + }else{ + console.log('Message sent: ' + info.response); + } + }); + } //res.send(JSON.stringify(req.body, null, 4)); });