20

他们是否可以通过包含多个密件抄送地址的 Mandrill API 发送电子邮件? Mandrill API 文档bcc_address在其 API 中仅显示一个。那么是否不能发送包含多个密件抄送地址的电子邮件?

4

2 回答 2

35

是的,完全可行!根据Mandrill APIsend文档,您可以在字段中指定多个地址to,并将它们标记为type bcc.

这是一个例子:

{
   "to":[
      {
         "email":"recipient.email@example.com",
         "name":"Recipient Name",
         "type":"to"
      },
      {
         "email":"bcc.recipient.email.1@example.com",
         "name":"BCC Recipient Name 1",
         "type":"bcc"
      },
      {
         "email":"bcc.recipient.email.2@example.com",
         "name":"BCC Recipient Name 2",
         "type":"bcc"
      }
   ]
}

希望这可以帮助。

还要确保您在"preserve_recipients": true消息部分下传递值。

于 2013-10-25T23:41:07.033 回答
6

如果您尝试向多个用户发送电子邮件,但不希望他们能够看到您将电子邮件发送给谁,并且无法“全部回复”,则可以将 preserveRecipients 设置为 false。

来源:http ://help.mandrill.com/entries/21688056-Using-SMTP-Headers-to-customize-your-messages#preserve-recipient-headers-for-group-emails

于 2015-01-06T15:06:57.160 回答