0

在他们的文档中,SendGrid 描述了要发送到 API的结构:

{ "to": // list of emails
  "sub": // list of substitutions
  "filters": // template ID here
}

但是它应该如何与邮件发送结构一起使用呢?

{ "personalizations": 'to' and 'subject' here
  "from": ...
  "content": ... }

模板文档还说:

如果您使用的是 Web API v3 邮件发送端点,您可以通过在 JSON 有效负载的 template_id 参数中设置模板 ID 来指定要使用的事务模板。

“简单地”。好的。但是我的替代品将如何指定呢?

4

1 回答 1

1

好吧,下面是一个工作示例。这与 v3 文档不同。

{
  "personalizations" : [ {
    "substitutions" : {
      ":name" : "John"
    },
    "subject" : "Hello from Java",
    "to" : [ {
      "email" : "john@example.com"
    } ]
  } ],
  "from" : {
    "email" : "john@example.com"
  },
  "template_id" : "11111111-1111-1111-1111-111111111111"
}
于 2017-12-18T10:28:08.380 回答