如何禁用Node JS中的邮件预览(电子邮件模板)?

时间:2018-08-08 07:18:21

标签: node.js nodemailer email-templates

我正在使用带有电子邮件模板的nodemailer。我可以向用户发送电子邮件。我面临的唯一问题是每次都预览电子邮件。您能告诉我如何禁用它吗?

var email = new EmailTemplate({
            message: {
              from: 'abc@****.com',
            },
            // uncomment below to send emails in development/test env:
            send: true,
            transport: {
              jsonTransport: true
            },
            preview:'production', // tried with production and development but is of no use
            views: {
              options: {
                extension: 'ejs' // <---- HERE
              }
            }
          });

1 个答案:

答案 0 :(得分:3)

严重错误,但我只需要添加preview:false