我是 node.js 的新手,无法弄清楚如何在 node.js 中引用 js 库 postmark.js。
var POSTMARK_KEY = "xxxxxxxxxxxxxxxxxxxxxxxxxx";
var postmark = require("postmark")(POSTMARK_KEY);
postmark.send({
"From": from,
"To": to,
"Subject": subject,
"TextBody": emailBody
}, function (err, to) {
if (err) {
console.log(err);
return;
}
console.log("Email sent to: %s", to);
});
我尝试了上面的代码,但不确定如何使用 postmark.js
有没有什么简单的方法可以在 js 中使用 html 模板来实现 html 电子邮件功能?