-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathemail.js
More file actions
106 lines (93 loc) · 2.52 KB
/
email.js
File metadata and controls
106 lines (93 loc) · 2.52 KB
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
const nodemailer = require('nodemailer');
const pug = require('pug');
const {convert} = require('html-to-text');
const mg = require('nodemailer-mailgun-transport');
module.exports = class Email {
constructor(user, url) {
this.to = user.email;
this.firstName = user.name.split(' ')[0];
this.url = url;
this.from = `Brian Asquith <${process.env.EMAIL_FROM}>`;
}
newTransport() {
if (process.env.NODE_ENV === 'production') {
// MailGun
return nodemailer.createTransport(mg({
auth: {
api_key: process.env.MAILGUN_API,
domain: process.env.MAILGUN_DOMAIN
},
secure: false
}));
}
return nodemailer.createTransport({
host: process.env.EMAIL_HOST,
port: process.env.EMAIL_PORT,
logger: true,
secure: false,
auth: {
user: process.env.EMAIL_USERNAME,
pass: process.env.EMAIL_PASSWORD
},
tls: {
ciphers: 'SSLv3'
}
});
}
// Send the actual email
async send(template, subject) {
// 1) Render HTML based on a pug template
const html = pug.renderFile(`${__dirname}/../views/email/${template}.pug`, {
firstName: this.firstName,
url: this.url,
subject
});
// 2) Define email options
const mailOptions = {
from: this.from,
to: this.to,
subject,
html,
text: convert(html)
};
// 3) Create a transport and send email
await this.newTransport().sendMail(mailOptions);
}
async sendWelcome() {
try {
await this.send('welcome', 'Welcome to the XL Family!');
} catch(err) {
console.log(err)
}
}
async sendPasswordReset() {
await this.send(
'passwordReset',
'Your password reset token (valid for only 10 minutes)'
);
}
};
// const sendEmail = async options => {
// // 1) Create a transporter
// const transporter = nodemailer.createTransport({
// host: process.env.EMAIL_HOST,
// port: process.env.EMAIL_PORT,
// logger: true,
// secure: false,
// auth: {
// user: process.env.EMAIL_USERNAME,
// pass: process.env.EMAIL_PASSWORD
// }
// });
// // 2) Define the email options
// const mailOptions = {
// from: `Brian Asquith <${process.env.EMAIL_FROM}>`,
// to: options.email,
// subject: options.subject,
// text: options.message
// // html:
// };
// // 3) Actually send the email
// await transporter.sendMail(mailOptions);
// };
// module.exports = sendEmail;