Answer the question
In order to leave comments, you need to log in
How to get the html code of a page rendered through handlebars in node.js?
I'm following the node.js tutorial. The tutorials use pug, but I use hbs. I translated more or less successfully until I ran into a problem with rendering letters. In the lesson itself, this code
const nodemailer = require('nodemailer');
const pug = require('pug');
const juice = require('juice');
const htmlToText = require('html-to-text');
const promisify = require('es6-promisify');
const transport = nodemailer.createTransport({
host: process.env.MAIL_HOST,
port: process.env.MAIL_PORT,
auth: {
user: process.env.MAIL_USER,
pass: process.env.MAIL_PASS
}
});
const generateHTML = (filename, options = {}) => {
const html = pug.renderFile(`${__dirname}/../views/email/${filename}.pug`,
options);
const inlined = juice(html);
return inlined;
};
exports.send = async (options) => {
const html = generateHTML(options.filename, options);
const text = htmlToText.fromString(html);
const mailOptions = {
from: `Wes Bos <[email protected]>`,
to: options.user.email,
subject: options.subject,
html,
text
};
const sendMail = promisify(transport.sendMail, transport);
return sendMail(mailOptions);
};
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question