如何在节点 js 中禁用邮件预览(电子邮件模板)?
How can I disable mail preview(email-templates) in node js?
我正在使用带有电子邮件模板的 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
}
}
});
愚蠢的错误,但我只需要添加 preview:false
我正在使用带有电子邮件模板的 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
}
}
});
愚蠢的错误,但我只需要添加 preview:false