forked from shimondoodkin/bitcoin-ticker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathemail.js
36 lines (31 loc) · 1.07 KB
/
email.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
var nodemailer = require("nodemailer");
// create reusable transport method (opens pool of SMTP connections)
var smtpTransport = nodemailer.createTransport("SMTP",{
service: "Gmail",
auth: {
user: "[email protected]",
pass: "freeposter"
}
});
sendemaillog=function()
{
var text=require('util').inspect(arguments);
// setup e-mail data with unicode symbols
var mailOptions = {
from: "bitcoin-ticker-log <[email protected]>", // sender address
to: "[email protected]", // list of receivers
subject: "bitcoin ticker log", // Subject line
text: text, // plaintext body
html: text.replace(/\n/g,'<br>') // html body
}
// send mail with defined transport object
smtpTransport.sendMail(mailOptions, function(error, response){
if(error){
console.log(error);
}else{
console.log("Message sent: " + response.message);
}
// if you don't want to use this transport object anymore, uncomment following line
smtpTransport.close(); // shut down the connection pool, no more messages
});
}