使用sendgrid节点模块,如何发送SendGrid模板引擎电子邮件?
我已经通过SendGrid的模板引擎创建了“感谢订阅”电子邮件模板。使用sendgrid节点模块,如何发送SendGrid模板引擎电子邮件?
现在,当有人订阅我的网站时,我想发送那个人那个模板。我可以使用sendgrid-nodejs包吗?
我在文档中没有看到任何与此有关的内容。
是的,这真的很容易,你只需要在添加它作为一个过滤器。以下是它的外观:
var cardEmail = new sendgrid.Email({
to: "[email protected]",
from: "[email protected]",
subject: process.env.SUBJECT,
html: '<h2>Thanks for requesting a business card!</h2>', // This fills out the <%body%> tag inside your SendGrid template
});
// Tell SendGrid which template to use, and what to substitute. You can use as many substitutions as you want.
cardEmail.setFilters({"templates": {"settings": {"enabled": 1, "template_id": "325ae5e7-69dd-4b95-b003-b0109f750cfa"}}}); // Just replace this with the ID of the template you want to use
cardEmail.addSubstitution('-greeting-', "Happy Friday!"); // You don't need to have a substitution, but if you want it, here's how you do that :)
// Everything is set up, let's send the email!
sendgrid.send(cardEmail, function(err, json){
if (err) {
console.log(err);
} else {
console.log('Email sent!');
}
});
我希望能帮到你。如果您需要更多洞察力,请查看我写的有关using Template Engine with sendgrid-nodejs的博文。
看起来您需要使用SMTPAPI的应用程序(过滤器)方法发送模板。我不相信它还没有被web API支持。下面是一些文档:
https://sendgrid.com/docs/API_Reference/SMTP_API/apps.html#templates
调用模板只能在X-smtpapi参数来完成,但是这样的说法可以在[webapi调用](https://sendgrid.com/docs/API_Reference/Web_API/mail.html#-send) – jacobmovingfwd 2015-03-16 16:59:37
,使其与版本4.xx的使用本作品:
var helper = require('sendgrid').mail;
var from_email = new helper.Email('[email protected]');
var to_email = new helper.Email('[email protected]');
var subject = 'I\'m replacing the subject tag';
var content = new helper.Content('text/html', 'I\'m replacing the <strong>body tag</strong>');
var mail = new helper.Mail(from_email, subject, to_email, content);
mail.personalizations[0].addSubstitution(new helper.Substitution('-name-', 'Example User'));
mail.personalizations[0].addSubstitution(new helper.Substitution('-city-', 'Denver'));
mail.setTemplateId('13b8f94f-bcae-4ec6-b752-70d6cb59f932');
什么是替代?像Mandrill一样的标签? :) – jdnichollsc 2016-04-27 13:42:40
这不再适用于最新的SDK :( – 2017-02-01 13:51:47