Enable MailGun Api to send email with multiple BCC email addresses only.
It's a common scenario when you want to send an email and have a list of recipients which for business purpose needs to be in BCC.
Currently the error which comes from the MailGun Api is "'Bad Request - 'to' parameter is missing' error."
Here are some StackOverflow threads about this
* http://stackoverflow.com/questions/28503099/how-to-send-mail-only-to-bcc-with-mailgun-php-api
* http://stackoverflow.com/questions/34400386/do-i-have-to-specify-a-to-recipient

-
Dieter Vieren commented
Hi,
When using the API endpoint /messages, I would like it to be possible to queue messages with an empty "to" field and just add "bcc" addresses.
Aparently, you can do this in /messages.mime, but it would be great if this would be possible in the prefered endpoint /messages.
(just fyi, you can send emails with just bcc using gmail)
-
Kevin commented
This would dramatically cut down on either bounced emails (sent to a non-existing address in the To field) or extra emails that are ignored (sent to a noreply box that has to be created. This feature is highly desirable.
-
Dominic Watson commented
The API is a joke. Took me ages of back and forth trial and error and a 1,000 non-BCC blunder to even realise that you need to setup templates differently as well.
Non-bulk: {{ subject }}
Bulk: %recipient.subject%And you even have to send them differently via API
-
Emil Sedgh commented
This is very inconvenient as it cripples us to have a normal email compose feature in our app.
-
Anonymous commented
Same thing for an email with just CC addresses. You can do this with other email API's and it's probably a 10 min change for your engineers.....
-
Anonymous commented
We need this too!