質問

In Mandrill api using php,when I am adding a bcc using following code,the mail is sent successfully but the bcc line is not appearing in the mail details of inbox mail.

"to": [
{
"email": "abc@abc.com",
"name": "abc"
},
{"email": "xyz@xyz.com", "type": "cc"},
{"email": "pqr@pqr.com", "type": "bcc"}
]
役に立ちましたか?

解決 2

That's how it is supposed to be. BCC is never shown to recipients.

他のヒント

You can try with

Parameters bcc_address contain an optional address to receive an exact copy of each recipient's email

Mandrill Docs with Example https://mandrillapp.com/api/docs/messages.JSON.html
ライセンス: CC-BY-SA帰属
所属していません StackOverflow
scroll top