Skip to content

Commit

Permalink
Merge pull request BradWhittington#4 from dhan88/master
Browse files Browse the repository at this point in the history
Multiple recipient list needs to be sent as comma delimited string.
  • Loading branch information
BradWhittington committed Jun 25, 2012
2 parents e45808d + df4e2f4 commit 66d9c34
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion django_mailgun/__init__.py
Expand Up @@ -54,7 +54,7 @@ def _send(self, email_message):
post(self._api_url + "messages.mime",
auth=("api", self._access_key),
data={
"to": recipients,
"to": ", ".join(recipients),
"from": from_email,
},
files={
Expand Down

0 comments on commit 66d9c34

Please sign in to comment.