通过包含多个BCC地址的Mandrill API发送电子邮件

时间:2013-08-13 14:29:35

标签: mailchimp mandrill

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

2 个答案:

答案 0 :(得分:29)

是的,完全可行!根据{{​​3}},您可以在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"
      }
   ]
}

希望这有帮助。

答案 1 :(得分:4)

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

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