Sendgrid:在一个请求中发送多封不同的电子邮件

Sendgrid: Send multiple different emails in one request

我在他们的网站上使用 sendgrid java web api 客户端通过 web api 网关发送邮件。我的问题是每个请求我只能发送一条消息,而且我通常需要一次发送 1000-1500 条内容各不相同的消息,所以我只是循环发送它们。然而,这使得 1000-1500 api 请求非常慢。

是否可以在一个请求中发送多封不同的电子邮件?

是的,是:

https://sendgrid.com/docs/Integrate/Code_Examples/java.html

您可以继续向您的电子邮件中添加多个 'tos',如下所示:

email.addTo("anemail@example.com")

但是,您想通过添加多个 BCC 来实现,这样您就不会泄露每个人的电子邮件地址。

email.addBcc("anemail@example.com")

这是一种变通方法,但您可以使用 substitution property of the X-SMTPAPI header 将不同的电子邮件批量发送到一个请求中。在您的电子邮件 body 中,仅包含替换标记,例如%content%。然后在 header 中传递您的实际内容,例如

{
  "to": [
    "john.doe@gmail.com",
    "jane.doe@hotmail.com"
  ],
  "sub": {
    "%content%": [
      "Here is the content for the email to john.doe",
      "And this is some different content for jane.doe"
    ]
  }
}