-
Notifications
You must be signed in to change notification settings - Fork 1
/
nodemailer.js
81 lines (67 loc) · 2.62 KB
/
nodemailer.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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
"use strict";
const nodemailer = require("nodemailer");
// // const user='[email protected]';
// // const password = 'Jyothsna@123';
// // const transport = nodemailer.createTransport({
// // service : 'Gmail',
// // auth :{
// // user : user,
// // pass :password,
// // },
// // });
// let testAccount = nodemailer.createTestAccount();
// let transporter = nodemailer.createTransport({
// host: "smtp.ethereal.email",
// port: 587,
// secure: false, // true for 465, false for other ports
// auth: {
// user: testAccount.user, // generated ethereal user
// pass: testAccount.pass, // generated ethereal password
// },
// });
// module.exports.sendConfirmationEmail = (name,email,confirmationCode) => {
// // transport.sendMail({
// // from : user,
// // to : user,
// // subject : "Verify your account",
// // html : `<h4>${email}</h4>`
// // })
// transporter.sendMail({
// from: '"Fred Foo 👻" <[email protected]>', // sender address
// to: "[email protected], [email protected]", // list of receivers
// subject: "Hello ✔", // Subject line
// text: "Hello world?", // plain text body
// html: `${name,email}`, // html body
// });
// }
async function sendEmail(nanocode) {
// Generate test SMTP service account from ethereal.email
// Only needed if you don't have a real mail account for testing
let testAccount = await nodemailer.createTestAccount();
// create reusable transporter object using the default SMTP transport
let transporter = nodemailer.createTransport({
host: "smtp.ethereal.email",
port: 587,
secure: false, // true for 465, false for other ports
auth: {
user: testAccount.user, // generated ethereal user
pass: testAccount.pass, // generated ethereal password
},
});
// send mail with defined transport object
let info = await transporter.sendMail({
from: '"Fred Foo 👻" <[email protected]>', // sender address
to: "[email protected], [email protected]", // list of receivers
subject: "Verification Link", // Subject line
text: "Click below link", // plain text body
html: `<h4 style={color:'yellow'}>Click here to verify your account</h4>
<a href=${nanocode}>${nanocode}</a>`, // html body
});
console.log("Message sent: %s", info.messageId);
// Message sent: <[email protected]>
// Preview only available when sending through an Ethereal account
console.log("Preview URL: %s", nodemailer.getTestMessageUrl(info));
// Preview URL: https://ethereal.email/message/WaQKMgKddxQDoou...
}
// main().catch(console.error);
module.exports={sendEmail}