yads / nodemailer-express-handlebars

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

Text Template doesn't work #64

Closed aqibgatoo closed 2 months ago

aqibgatoo commented 1 year ago

The presence of the text_template option doesn't work, only html is spewed out.

 const mailOptions = {
      from: 'something@soething.com',
      to:  'something@soething.com',
      bcc:  'something@soething.com',
      subject: 'test',
      template: 'email',
      text_template: 'text',
      context: {
        ...context,
      },
    };

"nodemailer": "^6.9.3", "nodemailer-express-handlebars": "^6.1.0",

yads commented 1 year ago

What is the behaviour you're experiencing? Specifying text_template should generate a mail object with both html and text fields as per https://nodemailer.com/message/