-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathmailer.js
32 lines (28 loc) · 795 Bytes
/
mailer.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
const nodemailer = require('nodemailer');
const smtpTransport = require('nodemailer-smtp-transport');
const transporter = nodemailer.createTransport(smtpTransport({
// find your service at https://nodemailer.com/smtp/well-known/
service: '<service>',
auth: {
user: '<sender_email_address>',
pass: '<password>'
}
}));
module.exports = {
sendMail: (text) => {
const mailOptions = {
from: '<sender_email_address>',
to: '<email_address>',
subject: 'Found Available Appointment(s)',
text: text
};
console.log("trying to send mail")
transporter.sendMail(mailOptions, function(error, info){
if (error) {
console.log('Error: ', error);
} else {
console.log('Email sent: ', info.response);
}
});
}
}