他们是否可以通过包含多个BCC地址的Mandrill API发送电子邮件?
Mandrill API documentation在其API中仅显示一个bcc_address
。那么是否不可能发送包含多个BCC地址的电子邮件?
答案 0 :(得分:29)
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。