发送模板山魈 javascript
Posted
技术标签:
【中文标题】发送模板山魈 javascript【英文标题】:send template mandrill javascript 【发布时间】:2013-05-18 22:27:18 【问题描述】:我是编程新手,想通过 mandrill api 发送模板。发送消息工作正常。 我必须在代码中更改哪些内容才能发送模板? 在 mandrill 文档中,我看到我可以用这个调用我存储在我帐户中的模板
"template_name": "example template_name",
但我不知道如何将其正确集成到下面的代码中。
如果您能提供任何帮助,我将不胜感激。为了理解,最简单的方法是您可以向我展示代码必须如何查看才能发送模板。
function log(obj)
$('#response').text(JSON.stringify(obj));
var m = new mandrill.Mandrill('API Key');
var params =
"message":
"from_email":"example@domain.com",
"from_name": "FromExampleName",
"to":["email":"recipient1@domain.com", "name": "Name of Recipient"],
"subject": "Mandrill API Test",
"html": "Sending a template doesn't work."
;
function sendTheMail()
m.messages.send(params, function(res)
log(res);
, function(err)
log(err);
);
【问题讨论】:
【参考方案1】:解决了。
必须像这样包含模板
var params =
"template_name": "templatename",
"template_content": [
"name": "example name",
"content": "example content"
],
"message":
"from_email":"example@domain.com",
"to":["email":"recipient@domain.com],
"subject": "Subject line",
"text": "text in the message"
;
然后像这样发送
function sendTheMail()
// Send the email!
m.messages.sendTemplate(params, function(res)
log(res);
, function(err)
log(err);
);
【讨论】:
以上是关于发送模板山魈 javascript的主要内容,如果未能解决你的问题,请参考以下文章