我正在使用带有电子邮件模板的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
}
}
});
答案 0 :(得分:3)
严重错误,但我只需要添加preview:false