forked from eladnava/mailgen
-
Notifications
You must be signed in to change notification settings - Fork 1
/
reset.js
59 lines (52 loc) · 1.92 KB
/
reset.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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
var Mailgen = require('../');
// Configure mailgen by setting a theme and your product info
var mailGenerator = new Mailgen({
theme: 'default',
product: {
// Appears in header & footer of e-mails
name: 'Mailgen',
link: 'https://mailgen.js/'
// Optional logo
// logo: 'https://mailgen.js/img/logo.png'
}
});
// Prepare email contents
var email = {
body: {
name: 'John Appleseed',
intro: 'You have received this email because a password reset request for your account was received.',
action: {
instructions: 'Click the button below to reset your password:',
button: {
color: '#DC4D2F',
text: 'Reset your password',
link: 'https://mailgen.js/reset?s=b350163a1a010d9729feb74992c1a010'
}
},
outro: 'If you did not request a password reset, no further action is required on your part.'
}
};
// Generate an HTML email with the provided contents
var emailBody = mailGenerator.generate(email);
// Generate the plaintext version of the e-mail (for clients that do not support HTML)
var emailText = mailGenerator.generatePlaintext(email);
// Optionally, preview the generated HTML e-mail by writing it to a local file
require('fs').writeFileSync('preview.html', emailBody, 'utf8');
require('fs').writeFileSync('preview.txt', emailText, 'utf8');
// `emailBody` now contains the HTML body,
// and `emailText` contains the textual version.
//
// It's up to you to send the e-mail.
// Check out nodemailer to accomplish this:
// https://nodemailer.com/
// Send the e-mail with your favorite mailer
// transporter.sendMail({
// from: '[email protected]',
// to: '[email protected]',
// subject: 'Mailgen',
// html: emailBody,
// text: emailText,
// }, function (err) {
// if (err) return console.log(err);
// console.log('Message sent successfully.');
// });