1

通过在 X-SMTPAPI 标头中添加“收件人”收件人,SendGrid 能够通过一次调用其 SMTP API 向多个收件人发送邮件:http: //sendgrid.com/docs/API_Reference/SMTP_API/index.html

您可以使用替换为每个收件人自定义电子邮件正文:http: //sendgrid.com/docs/API_Reference/SMTP_API/substitution_tags.html

但我找不到为每个收件人发送自定义抄送和密件抄送的方法。我想为每封电子邮件发送不同的抄送和密送地址。怎么做?

谢谢...

4

1 回答 1

0

无法通过 X-SMTPAPI 标头在每封邮件的基础上自定义抄送或密件抄送。但是,您可以分配适用于您发送的所有电子邮件的密件抄送或抄送。

例如,如果您要发送如下所示的内容:

"x-SMTPAPI": {
  "to": ["user1@example.com", "user2@example.com", ...],
  "bcc": ["some.employee1@example.com", "some.employee2@example.com"],
  ...
}

user1@example.com 和 user2@example.com 都会收到电子邮件,而 some.employee1@example.com 和 some.employee2@example.com 将在两封发出的电子邮件中被密件抄送。

于 2013-01-02T19:46:14.873 回答