mirror of
https://github.com/pacnpal/django-anymail.git
synced 2025-12-21 04:11:06 -05:00
Update djrill/mail/__init__.py
Defaulting `preserve_recipents` to False.
This commit is contained in:
@@ -8,7 +8,7 @@ class DjrillMessage(EmailMultiAlternatives):
|
|||||||
def __init__(self, subject='', body='', from_email=None, to=None, bcc=None,
|
def __init__(self, subject='', body='', from_email=None, to=None, bcc=None,
|
||||||
connection=None, attachments=None, headers=None, alternatives=None,
|
connection=None, attachments=None, headers=None, alternatives=None,
|
||||||
cc=None, from_name=None, tags=None, track_opens=True,
|
cc=None, from_name=None, tags=None, track_opens=True,
|
||||||
track_clicks=True, preserve_recipients=True):
|
track_clicks=True, preserve_recipients=False):
|
||||||
|
|
||||||
super(DjrillMessage, self).__init__(subject, body, from_email, to, bcc,
|
super(DjrillMessage, self).__init__(subject, body, from_email, to, bcc,
|
||||||
connection, attachments, headers, alternatives, cc)
|
connection, attachments, headers, alternatives, cc)
|
||||||
|
|||||||
Reference in New Issue
Block a user