yads / nodemailer-express-handlebars

A plugin for nodemailer that uses express-handlebars view engine to generate emails
87 stars 30 forks source link

support template for the text version so nodemailer will generate a m… #13

Closed patchlog closed 3 years ago

patchlog commented 6 years ago

…ultipart/alternative message if the text_template is defined in the context

yads commented 3 years ago

@patchlog thanks for the update, please also update the spacing and line separation

if (!!mail.data.text_template) {
  textTemplatePath = path.join(this.viewPath, mail.data.text_template + this.extName);
}