Use new alertmonitorfl Gmail addy to send email on any message that includes 'alert', closes issue #10

This commit is contained in:
jkaplon 2015-07-13 19:19:46 -04:00
parent 3cdf7ac643
commit 058152aca4

View File

@ -11,15 +11,15 @@ var logfile = fs.createWriteStream('./db/log.log', {flags: 'a'});
var transporter = nodemailer.createTransport({ var transporter = nodemailer.createTransport({
service: 'Gmail', service: 'Gmail',
auth: { auth: {
user: 'jkU8K5lrog9w@gmail.com', user: 'alertmonitorfl@gmail.com',
pass: 'NSLQZ~d6Zb~LLv8#t' pass: '6g*hkvVc%91oo3#$'
} }
}); });
var mailOptions = { var mailOptions = {
from: 'Alert Monitor <jkU8K5lrog9w@gmail.com>', from: 'Alert Monitor <alertmonitorfl@gmail.com>',
to: 'jody@kaplon.us', to: 'jody@kaplon.us',
subject: 'Alert received', 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(); stmt.finalize();
// Emails were working...don't need to send on every POST anymore. // Send emails on alerts only
//transporter.sendMail(mailOptions, function(error, info){ if(JSON.stringify(req.body, null, 4).indexOf('alert') > -1){
//if(error){ transporter.sendMail(mailOptions, function(error, info){
//console.log(error); if(error){
//}else{ console.log(error);
//console.log('Message sent: ' + info.response); }else{
//} console.log('Message sent: ' + info.response);
//}); }
});
}
//res.send(JSON.stringify(req.body, null, 4)); //res.send(JSON.stringify(req.body, null, 4));
}); });