const nodemailer = require('nodemailer'); // Create a transporter object using the default SMTP transport let transporter = nodemailer.createTransport({ service: 'Infomaniak', auth: { user: process.env.SMTP_USERNAME, pass: process.env.SMTP_PASSWORD } }); function sendConfirmationLink(destinationEmail, code) { const confirmationLink = `${process.env.FRONT_END_URL}/activate-account.html?q=${code}` let mailOptions = { from: `"Blink" ${process.env.SMTP_USERNAME}`, to: destinationEmail, subject: 'Verify your Blink Account', // text: 'This is plain HTML', html: getConfirmationLinkHtmlPage(confirmationLink) }; sendMail(mailOptions); } function sendMail(mailOptions) { transporter.sendMail(mailOptions, (error, info) => { if (error) { console.error(error); } }); } function getConfirmationLinkHtmlPage(confirmationLink) { return `Activation Page

Activate your Blink Account

Please click the activation link below to activate your account

Activate Now
`; } module.exports = { sendConfirmationLink, sendMail }