Domanda

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"}
]
È stato utile?

Soluzione 2

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

Altri suggerimenti

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
Autorizzato sotto: CC-BY-SA insieme a attribuzione
Non affiliato a StackOverflow
scroll top