我已经安装了节点邮件模块(npm i mail-https://www.npmjs.com/package/mail)
mail.message({
from: 'sender@example.net',
to: ['recipient@somewhere.org'],
subject: 'Hello from Node.JS'
})
.body('<h2>hello</h2>')
.send(function(err) {
if (err) throw err;
console.log('Sent!');
});
我正在.body()下发送html模板。它没有解析为电子邮件中的html。 这个模块不支持解析为html格式吗?
答案 0 :(得分:0)
我已经尝试过了,并且有效。将HTML数据放入{subject,to ..}
var mailOptions = {
html: '<h2>hello</h2>',
subject: 'Product Quantity less than 0',
to: '*******' //(Production)
}