Fixed #17811 -- Added connection parameter in call to EmailMessage from send_mass_mail. Thanks fed239 for the report and danielr for the patch.

git-svn-id: http://code.djangoproject.com/svn/django/trunk@17827 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
Claude Paroz 2012-03-29 18:53:27 +00:00
parent 31e84e40f8
commit 8bb5b60628
1 changed files with 2 additions and 1 deletions

View File

@ -78,7 +78,8 @@ def send_mass_mail(datatuple, fail_silently=False, auth_user=None,
connection = connection or get_connection(username=auth_user, connection = connection or get_connection(username=auth_user,
password=auth_password, password=auth_password,
fail_silently=fail_silently) fail_silently=fail_silently)
messages = [EmailMessage(subject, message, sender, recipient) messages = [EmailMessage(subject, message, sender, recipient,
connection=connection)
for subject, message, sender, recipient in datatuple] for subject, message, sender, recipient in datatuple]
return connection.send_messages(messages) return connection.send_messages(messages)