如何通过SendGrid API v3发送模板化电子邮件?
在他们的文档SendGrid描述structure被发送到API:如何通过SendGrid API v3发送模板化电子邮件?
{ "to": // list of emails "sub": // list of substitutions
"filters": // template ID here
}
但究竟是否应该与mail send结构一起使用吗?
{ "personalizations": 'to' and 'subject' here "from": ...
"content": ... }
而且模板医生说:
如果您在使用Web API V3邮件发送终端,你可以指定你想通过在设置模板ID只使用其中的交易模板您的JSON负载的template_id参数。
“简单”。好。但是,我的替代品如何指定呢?
回答:
那么,下面是一个工作示例。这与v3文档不同。
{ "personalizations" : [ {
"substitutions" : {
":name" : "John"
},
"subject" : "Hello from Java",
"to" : [ {
"email" : "[email protected]"
} ]
} ],
"from" : {
"email" : "[email protected]"
},
"template_id" : "11111111-1111-1111-1111-111111111111"
}
以上是 如何通过SendGrid API v3发送模板化电子邮件? 的全部内容, 来源链接: utcz.com/qa/261650.html