我使用以下to
属性发送请求API调用:
"to": [
{
"email": "recipient.email@example.com",
"type": "to"
},
{
"email": "another-email@example.com",
"type": "cc"
},
{
"email": "3rd-email@example.com",
"type": "cc"
}
]
我希望Mandrill根据上面请求中的属性发送一封电子邮件,其中To
字段为recipient.email@example.com
且CC
字段为another-email@example.com; 3rd-email@example.com
。
相反,Mandrill会发送三封单独的电子邮件,其中每个电子邮件都指定给一个人,CC
字段被视为To
字段。
有没有让Mandrill发送一封尊重CC地址作为实际CC收件人的电子邮件?