2012-06-08 00:08:47 +08:00
|
|
|
from __future__ import unicode_literals
|
|
|
|
|
2007-06-27 17:44:55 +08:00
|
|
|
import mimetypes
|
2007-05-03 19:35:11 +08:00
|
|
|
import os
|
2006-11-07 23:32:18 +08:00
|
|
|
import random
|
2009-11-03 20:53:26 +08:00
|
|
|
import time
|
2015-01-28 20:35:27 +08:00
|
|
|
from email import (
|
|
|
|
charset as Charset, encoders as Encoders, generator, message_from_string,
|
|
|
|
)
|
|
|
|
from email.header import Header
|
2013-08-21 09:17:26 +08:00
|
|
|
from email.message import Message
|
2011-09-10 00:18:38 +08:00
|
|
|
from email.mime.base import MIMEBase
|
2013-08-21 09:17:26 +08:00
|
|
|
from email.mime.message import MIMEMessage
|
2015-01-28 20:35:27 +08:00
|
|
|
from email.mime.multipart import MIMEMultipart
|
|
|
|
from email.mime.text import MIMEText
|
|
|
|
from email.utils import formataddr, formatdate, getaddresses, parseaddr
|
2008-03-22 05:52:34 +08:00
|
|
|
|
|
|
|
from django.conf import settings
|
2009-11-03 20:53:26 +08:00
|
|
|
from django.core.mail.utils import DNS_NAME
|
2012-07-20 20:22:00 +08:00
|
|
|
from django.utils import six
|
2015-01-28 20:35:27 +08:00
|
|
|
from django.utils.encoding import force_text
|
2005-07-13 09:25:57 +08:00
|
|
|
|
2007-05-03 20:08:31 +08:00
|
|
|
# Don't BASE64-encode UTF-8 messages so that we avoid unwanted attention from
|
|
|
|
# some spam filters.
|
2013-08-20 07:04:50 +08:00
|
|
|
utf8_charset = Charset.Charset('utf-8')
|
|
|
|
utf8_charset.body_encoding = None # Python defaults to BASE64
|
2007-05-03 20:08:31 +08:00
|
|
|
|
2007-06-27 17:44:55 +08:00
|
|
|
# Default MIME type to use on attachments (if it is not explicitly given
|
|
|
|
# and cannot be guessed).
|
|
|
|
DEFAULT_ATTACHMENT_MIME_TYPE = 'application/octet-stream'
|
|
|
|
|
2007-02-17 14:01:17 +08:00
|
|
|
|
2009-11-03 20:53:26 +08:00
|
|
|
class BadHeaderError(ValueError):
|
|
|
|
pass
|
2007-02-17 14:01:17 +08:00
|
|
|
|
2006-11-10 11:28:58 +08:00
|
|
|
|
2014-11-24 22:51:41 +08:00
|
|
|
# Copied from Python 3.2+ standard library, with the following modifications:
|
2008-03-22 05:39:50 +08:00
|
|
|
# * Used cached hostname for performance.
|
2014-11-24 22:51:41 +08:00
|
|
|
# TODO: replace with email.utils.make_msgid(.., domain=DNS_NAME) when dropping
|
|
|
|
# Python 2 (Python 2's version doesn't have domain parameter) (#23905).
|
|
|
|
def make_msgid(idstring=None, domain=None):
|
2007-05-03 19:35:11 +08:00
|
|
|
"""Returns a string suitable for RFC 2822 compliant Message-ID, e.g:
|
|
|
|
|
|
|
|
<20020201195627.33539.96671@nightshade.la.mastaler.com>
|
|
|
|
|
|
|
|
Optional idstring if given is a string used to strengthen the
|
2014-11-24 22:51:41 +08:00
|
|
|
uniqueness of the message id. Optional domain if given provides the
|
|
|
|
portion of the message id after the '@'. It defaults to the locally
|
|
|
|
defined hostname.
|
2007-05-03 19:35:11 +08:00
|
|
|
"""
|
|
|
|
timeval = time.time()
|
|
|
|
utcdate = time.strftime('%Y%m%d%H%M%S', time.gmtime(timeval))
|
2014-11-24 22:51:41 +08:00
|
|
|
pid = os.getpid()
|
2007-05-03 19:35:11 +08:00
|
|
|
randint = random.randrange(100000)
|
|
|
|
if idstring is None:
|
|
|
|
idstring = ''
|
|
|
|
else:
|
|
|
|
idstring = '.' + idstring
|
2014-11-24 22:51:41 +08:00
|
|
|
if domain is None:
|
|
|
|
# stdlib uses socket.getfqdn() here instead
|
|
|
|
domain = DNS_NAME
|
|
|
|
msgid = '<%s.%s.%s%s@%s>' % (utcdate, pid, randint, idstring, domain)
|
2007-05-03 19:35:11 +08:00
|
|
|
return msgid
|
|
|
|
|
2005-12-30 06:12:54 +08:00
|
|
|
|
2011-01-15 13:55:24 +08:00
|
|
|
# Header names that contain structured address data (RFC #5322)
|
2014-09-26 20:31:50 +08:00
|
|
|
ADDRESS_HEADERS = {
|
2011-01-15 13:55:24 +08:00
|
|
|
'from',
|
|
|
|
'sender',
|
|
|
|
'reply-to',
|
|
|
|
'to',
|
|
|
|
'cc',
|
|
|
|
'bcc',
|
|
|
|
'resent-from',
|
|
|
|
'resent-sender',
|
|
|
|
'resent-to',
|
|
|
|
'resent-cc',
|
|
|
|
'resent-bcc',
|
2014-09-26 20:31:50 +08:00
|
|
|
}
|
2011-01-15 13:55:24 +08:00
|
|
|
|
|
|
|
|
2010-03-06 05:27:58 +08:00
|
|
|
def forbid_multi_line_headers(name, val, encoding):
|
2008-03-22 05:52:34 +08:00
|
|
|
"""Forbids multi-line headers, to prevent header injection."""
|
2010-03-06 23:50:12 +08:00
|
|
|
encoding = encoding or settings.DEFAULT_CHARSET
|
2012-07-21 16:00:10 +08:00
|
|
|
val = force_text(val)
|
2008-01-02 16:39:03 +08:00
|
|
|
if '\n' in val or '\r' in val:
|
|
|
|
raise BadHeaderError("Header values can't contain newlines (got %r for header %r)" % (val, name))
|
|
|
|
try:
|
2012-08-09 18:12:22 +08:00
|
|
|
val.encode('ascii')
|
2008-01-02 16:39:03 +08:00
|
|
|
except UnicodeEncodeError:
|
2011-01-15 13:55:24 +08:00
|
|
|
if name.lower() in ADDRESS_HEADERS:
|
|
|
|
val = ', '.join(sanitize_address(addr, encoding)
|
|
|
|
for addr in getaddresses((val,)))
|
2008-01-02 16:39:03 +08:00
|
|
|
else:
|
2012-08-09 18:12:22 +08:00
|
|
|
val = Header(val, encoding).encode()
|
2008-08-23 21:31:28 +08:00
|
|
|
else:
|
|
|
|
if name.lower() == 'subject':
|
2012-08-09 18:12:22 +08:00
|
|
|
val = Header(val).encode()
|
|
|
|
return str(name), val
|
2008-01-02 13:29:10 +08:00
|
|
|
|
2011-01-15 13:55:24 +08:00
|
|
|
|
|
|
|
def sanitize_address(addr, encoding):
|
2015-02-26 05:17:15 +08:00
|
|
|
if not isinstance(addr, tuple):
|
2012-07-21 16:00:10 +08:00
|
|
|
addr = parseaddr(force_text(addr))
|
2011-01-15 13:55:24 +08:00
|
|
|
nm, addr = addr
|
2014-11-24 21:34:02 +08:00
|
|
|
nm = Header(nm, encoding).encode()
|
2011-01-15 13:55:24 +08:00
|
|
|
try:
|
2012-08-09 18:12:22 +08:00
|
|
|
addr.encode('ascii')
|
2011-01-15 13:55:24 +08:00
|
|
|
except UnicodeEncodeError: # IDN
|
2012-06-08 00:08:47 +08:00
|
|
|
if '@' in addr:
|
|
|
|
localpart, domain = addr.split('@', 1)
|
2011-01-15 13:55:24 +08:00
|
|
|
localpart = str(Header(localpart, encoding))
|
2012-08-09 18:12:22 +08:00
|
|
|
domain = domain.encode('idna').decode('ascii')
|
2011-01-15 13:55:24 +08:00
|
|
|
addr = '@'.join([localpart, domain])
|
|
|
|
else:
|
2012-08-09 18:12:22 +08:00
|
|
|
addr = Header(addr, encoding).encode()
|
2011-01-15 13:55:24 +08:00
|
|
|
return formataddr((nm, addr))
|
|
|
|
|
|
|
|
|
2013-12-28 19:40:10 +08:00
|
|
|
class MIMEMixin():
|
2014-10-09 20:18:31 +08:00
|
|
|
def as_string(self, unixfrom=False, linesep='\n'):
|
2013-08-21 09:17:26 +08:00
|
|
|
"""Return the entire formatted message as a string.
|
|
|
|
Optional `unixfrom' when True, means include the Unix From_ envelope
|
|
|
|
header.
|
|
|
|
|
|
|
|
This overrides the default as_string() implementation to not mangle
|
|
|
|
lines that begin with 'From '. See bug #13433 for details.
|
|
|
|
"""
|
2013-12-29 01:35:17 +08:00
|
|
|
fp = six.StringIO()
|
|
|
|
g = generator.Generator(fp, mangle_from_=False)
|
2014-10-09 20:18:31 +08:00
|
|
|
if six.PY2:
|
|
|
|
g.flatten(self, unixfrom=unixfrom)
|
|
|
|
else:
|
|
|
|
g.flatten(self, unixfrom=unixfrom, linesep=linesep)
|
2013-12-29 01:35:17 +08:00
|
|
|
return fp.getvalue()
|
|
|
|
|
|
|
|
if six.PY2:
|
|
|
|
as_bytes = as_string
|
|
|
|
else:
|
2014-10-09 20:18:31 +08:00
|
|
|
def as_bytes(self, unixfrom=False, linesep='\n'):
|
2013-12-29 01:35:17 +08:00
|
|
|
"""Return the entire formatted message as bytes.
|
|
|
|
Optional `unixfrom' when True, means include the Unix From_ envelope
|
|
|
|
header.
|
|
|
|
|
|
|
|
This overrides the default as_bytes() implementation to not mangle
|
|
|
|
lines that begin with 'From '. See bug #13433 for details.
|
|
|
|
"""
|
2013-12-28 19:40:10 +08:00
|
|
|
fp = six.BytesIO()
|
|
|
|
g = generator.BytesGenerator(fp, mangle_from_=False)
|
2014-10-09 20:18:31 +08:00
|
|
|
g.flatten(self, unixfrom=unixfrom, linesep=linesep)
|
2013-12-28 19:40:10 +08:00
|
|
|
return fp.getvalue()
|
|
|
|
|
2013-08-21 09:17:26 +08:00
|
|
|
|
2013-12-28 19:40:10 +08:00
|
|
|
class SafeMIMEMessage(MIMEMixin, MIMEMessage):
|
2013-08-21 09:17:26 +08:00
|
|
|
|
2013-12-28 19:40:10 +08:00
|
|
|
def __setitem__(self, name, val):
|
|
|
|
# message/rfc822 attachments must be ASCII
|
|
|
|
name, val = forbid_multi_line_headers(name, val, 'ascii')
|
|
|
|
MIMEMessage.__setitem__(self, name, val)
|
|
|
|
|
|
|
|
|
|
|
|
class SafeMIMEText(MIMEMixin, MIMEText):
|
2011-01-15 13:55:24 +08:00
|
|
|
|
2014-11-23 09:12:24 +08:00
|
|
|
def __init__(self, _text, _subtype='plain', _charset=None):
|
|
|
|
self.encoding = _charset
|
|
|
|
if _charset == 'utf-8':
|
2014-09-28 04:48:30 +08:00
|
|
|
# Unfortunately, Python < 3.5 doesn't support setting a Charset instance
|
2013-08-20 07:04:50 +08:00
|
|
|
# as MIMEText init parameter (http://bugs.python.org/issue16324).
|
|
|
|
# We do it manually and trigger re-encoding of the payload.
|
2014-11-23 09:12:24 +08:00
|
|
|
MIMEText.__init__(self, _text, _subtype, None)
|
2013-08-20 07:04:50 +08:00
|
|
|
del self['Content-Transfer-Encoding']
|
2015-06-15 21:43:35 +08:00
|
|
|
self.set_payload(_text, utf8_charset)
|
2014-11-23 09:12:24 +08:00
|
|
|
self.replace_header('Content-Type', 'text/%s; charset="%s"' % (_subtype, _charset))
|
|
|
|
elif _charset is None:
|
|
|
|
# the default value of '_charset' is 'us-ascii' on Python 2
|
|
|
|
MIMEText.__init__(self, _text, _subtype)
|
2013-08-20 07:04:50 +08:00
|
|
|
else:
|
2014-11-23 09:12:24 +08:00
|
|
|
MIMEText.__init__(self, _text, _subtype, _charset)
|
2011-01-15 13:55:24 +08:00
|
|
|
|
|
|
|
def __setitem__(self, name, val):
|
2010-03-06 05:27:58 +08:00
|
|
|
name, val = forbid_multi_line_headers(name, val, self.encoding)
|
2007-07-01 14:32:34 +08:00
|
|
|
MIMEText.__setitem__(self, name, val)
|
2007-06-27 17:44:55 +08:00
|
|
|
|
2011-01-15 13:55:24 +08:00
|
|
|
|
2013-12-28 19:40:10 +08:00
|
|
|
class SafeMIMEMultipart(MIMEMixin, MIMEMultipart):
|
2011-01-15 13:55:24 +08:00
|
|
|
|
2010-03-06 05:27:58 +08:00
|
|
|
def __init__(self, _subtype='mixed', boundary=None, _subparts=None, encoding=None, **_params):
|
|
|
|
self.encoding = encoding
|
|
|
|
MIMEMultipart.__init__(self, _subtype, boundary, _subparts, **_params)
|
2011-01-15 13:55:24 +08:00
|
|
|
|
2007-07-01 14:32:34 +08:00
|
|
|
def __setitem__(self, name, val):
|
2010-03-06 05:27:58 +08:00
|
|
|
name, val = forbid_multi_line_headers(name, val, self.encoding)
|
2007-07-01 14:32:34 +08:00
|
|
|
MIMEMultipart.__setitem__(self, name, val)
|
2005-12-30 04:33:56 +08:00
|
|
|
|
2011-01-15 13:55:24 +08:00
|
|
|
|
2007-05-03 19:35:11 +08:00
|
|
|
class EmailMessage(object):
|
|
|
|
"""
|
|
|
|
A container for email information.
|
|
|
|
"""
|
2007-06-27 20:18:05 +08:00
|
|
|
content_subtype = 'plain'
|
2009-06-12 21:56:40 +08:00
|
|
|
mixed_subtype = 'mixed'
|
2007-06-27 20:54:15 +08:00
|
|
|
encoding = None # None => use settings default
|
2007-06-27 20:18:05 +08:00
|
|
|
|
2007-06-27 17:44:55 +08:00
|
|
|
def __init__(self, subject='', body='', from_email=None, to=None, bcc=None,
|
2014-11-26 07:05:44 +08:00
|
|
|
connection=None, attachments=None, headers=None, cc=None,
|
|
|
|
reply_to=None):
|
Merged Unicode branch into trunk (r4952:5608). This should be fully
backwards compatible for all practical purposes.
Fixed #2391, #2489, #2996, #3322, #3344, #3370, #3406, #3432, #3454, #3492, #3582, #3690, #3878, #3891, #3937, #4039, #4141, #4227, #4286, #4291, #4300, #4452, #4702
git-svn-id: http://code.djangoproject.com/svn/django/trunk@5609 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2007-07-04 20:11:04 +08:00
|
|
|
"""
|
2008-03-22 05:52:34 +08:00
|
|
|
Initialize a single email message (which can be sent to multiple
|
Merged Unicode branch into trunk (r4952:5608). This should be fully
backwards compatible for all practical purposes.
Fixed #2391, #2489, #2996, #3322, #3344, #3370, #3406, #3432, #3454, #3492, #3582, #3690, #3878, #3891, #3937, #4039, #4141, #4227, #4286, #4291, #4300, #4452, #4702
git-svn-id: http://code.djangoproject.com/svn/django/trunk@5609 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2007-07-04 20:11:04 +08:00
|
|
|
recipients).
|
|
|
|
|
2009-11-03 20:53:26 +08:00
|
|
|
All strings used to create the message can be unicode strings
|
|
|
|
(or UTF-8 bytestrings). The SafeMIMEText class will handle any
|
|
|
|
necessary encoding conversions.
|
Merged Unicode branch into trunk (r4952:5608). This should be fully
backwards compatible for all practical purposes.
Fixed #2391, #2489, #2996, #3322, #3344, #3370, #3406, #3432, #3454, #3492, #3582, #3690, #3878, #3891, #3937, #4039, #4141, #4227, #4286, #4291, #4300, #4452, #4702
git-svn-id: http://code.djangoproject.com/svn/django/trunk@5609 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2007-07-04 20:11:04 +08:00
|
|
|
"""
|
2007-12-19 12:51:35 +08:00
|
|
|
if to:
|
2014-11-27 10:16:31 +08:00
|
|
|
if isinstance(to, six.string_types):
|
|
|
|
raise TypeError('"to" argument must be a list or tuple')
|
2007-12-19 12:51:35 +08:00
|
|
|
self.to = list(to)
|
|
|
|
else:
|
|
|
|
self.to = []
|
2010-10-08 07:36:02 +08:00
|
|
|
if cc:
|
2014-11-27 10:16:31 +08:00
|
|
|
if isinstance(cc, six.string_types):
|
|
|
|
raise TypeError('"cc" argument must be a list or tuple')
|
2010-10-08 07:36:02 +08:00
|
|
|
self.cc = list(cc)
|
|
|
|
else:
|
|
|
|
self.cc = []
|
2007-12-19 12:51:35 +08:00
|
|
|
if bcc:
|
2014-11-27 10:16:31 +08:00
|
|
|
if isinstance(bcc, six.string_types):
|
|
|
|
raise TypeError('"bcc" argument must be a list or tuple')
|
2007-12-19 12:51:35 +08:00
|
|
|
self.bcc = list(bcc)
|
|
|
|
else:
|
|
|
|
self.bcc = []
|
2014-11-26 07:05:44 +08:00
|
|
|
if reply_to:
|
|
|
|
if isinstance(reply_to, six.string_types):
|
|
|
|
raise TypeError('"reply_to" argument must be a list or tuple')
|
|
|
|
self.reply_to = list(reply_to)
|
|
|
|
else:
|
|
|
|
self.reply_to = []
|
2007-05-03 22:38:45 +08:00
|
|
|
self.from_email = from_email or settings.DEFAULT_FROM_EMAIL
|
2007-05-03 19:35:11 +08:00
|
|
|
self.subject = subject
|
|
|
|
self.body = body
|
2007-06-27 17:44:55 +08:00
|
|
|
self.attachments = attachments or []
|
2007-06-27 20:41:37 +08:00
|
|
|
self.extra_headers = headers or {}
|
2007-05-03 19:35:11 +08:00
|
|
|
self.connection = connection
|
|
|
|
|
|
|
|
def get_connection(self, fail_silently=False):
|
2009-11-03 20:53:26 +08:00
|
|
|
from django.core.mail import get_connection
|
2007-05-03 19:35:11 +08:00
|
|
|
if not self.connection:
|
2009-11-03 20:53:26 +08:00
|
|
|
self.connection = get_connection(fail_silently=fail_silently)
|
2007-05-03 19:35:11 +08:00
|
|
|
return self.connection
|
|
|
|
|
|
|
|
def message(self):
|
2007-06-27 20:54:15 +08:00
|
|
|
encoding = self.encoding or settings.DEFAULT_CHARSET
|
2012-08-09 18:12:22 +08:00
|
|
|
msg = SafeMIMEText(self.body, self.content_subtype, encoding)
|
2009-06-12 21:56:40 +08:00
|
|
|
msg = self._create_message(msg)
|
2007-05-03 19:35:11 +08:00
|
|
|
msg['Subject'] = self.subject
|
2010-04-01 23:16:26 +08:00
|
|
|
msg['From'] = self.extra_headers.get('From', self.from_email)
|
2015-02-26 05:17:15 +08:00
|
|
|
msg['To'] = self.extra_headers.get('To', ', '.join(map(force_text, self.to)))
|
2010-10-08 07:36:02 +08:00
|
|
|
if self.cc:
|
2015-02-26 05:17:15 +08:00
|
|
|
msg['Cc'] = ', '.join(map(force_text, self.cc))
|
2014-11-26 07:05:44 +08:00
|
|
|
if self.reply_to:
|
2015-02-26 05:17:15 +08:00
|
|
|
msg['Reply-To'] = self.extra_headers.get('Reply-To', ', '.join(map(force_text, self.reply_to)))
|
2008-10-07 20:20:01 +08:00
|
|
|
|
|
|
|
# Email header names are case-insensitive (RFC 2045), so we have to
|
|
|
|
# accommodate that when doing comparisons.
|
|
|
|
header_names = [key.lower() for key in self.extra_headers]
|
|
|
|
if 'date' not in header_names:
|
|
|
|
msg['Date'] = formatdate()
|
|
|
|
if 'message-id' not in header_names:
|
2014-11-24 22:51:41 +08:00
|
|
|
# Use cached DNS_NAME for performance
|
|
|
|
msg['Message-ID'] = make_msgid(domain=DNS_NAME)
|
2007-06-27 20:41:37 +08:00
|
|
|
for name, value in self.extra_headers.items():
|
2011-12-30 20:44:35 +08:00
|
|
|
if name.lower() in ('from', 'to'): # From and To are already handled
|
2010-04-01 23:16:26 +08:00
|
|
|
continue
|
2007-06-27 20:41:37 +08:00
|
|
|
msg[name] = value
|
2007-05-03 19:50:43 +08:00
|
|
|
return msg
|
2007-05-03 19:35:11 +08:00
|
|
|
|
2007-05-03 22:38:45 +08:00
|
|
|
def recipients(self):
|
|
|
|
"""
|
|
|
|
Returns a list of all recipients of the email (includes direct
|
2010-10-08 07:36:02 +08:00
|
|
|
addressees as well as Cc and Bcc entries).
|
2007-05-03 22:38:45 +08:00
|
|
|
"""
|
2010-10-08 07:36:02 +08:00
|
|
|
return self.to + self.cc + self.bcc
|
2007-05-03 22:38:45 +08:00
|
|
|
|
2007-05-03 19:35:11 +08:00
|
|
|
def send(self, fail_silently=False):
|
2008-03-22 05:52:34 +08:00
|
|
|
"""Sends the email message."""
|
2008-10-24 12:38:43 +08:00
|
|
|
if not self.recipients():
|
|
|
|
# Don't bother creating the network connection if there's nobody to
|
|
|
|
# send to.
|
|
|
|
return 0
|
2007-05-03 19:35:11 +08:00
|
|
|
return self.get_connection(fail_silently).send_messages([self])
|
|
|
|
|
2007-06-27 20:18:05 +08:00
|
|
|
def attach(self, filename=None, content=None, mimetype=None):
|
2007-06-27 17:44:55 +08:00
|
|
|
"""
|
2007-06-27 20:18:05 +08:00
|
|
|
Attaches a file with the given filename and content. The filename can
|
2009-06-12 21:56:40 +08:00
|
|
|
be omitted and the mimetype is guessed, if not provided.
|
2007-06-27 17:44:55 +08:00
|
|
|
|
2007-06-27 20:18:05 +08:00
|
|
|
If the first parameter is a MIMEBase subclass it is inserted directly
|
|
|
|
into the resulting message attachments.
|
2007-06-27 17:44:55 +08:00
|
|
|
"""
|
|
|
|
if isinstance(filename, MIMEBase):
|
2013-10-10 21:35:56 +08:00
|
|
|
assert content is None
|
|
|
|
assert mimetype is None
|
2007-07-06 14:53:27 +08:00
|
|
|
self.attachments.append(filename)
|
2007-06-27 17:44:55 +08:00
|
|
|
else:
|
|
|
|
assert content is not None
|
|
|
|
self.attachments.append((filename, content, mimetype))
|
|
|
|
|
|
|
|
def attach_file(self, path, mimetype=None):
|
|
|
|
"""Attaches a file from the filesystem."""
|
|
|
|
filename = os.path.basename(path)
|
2012-05-05 20:01:38 +08:00
|
|
|
with open(path, 'rb') as f:
|
|
|
|
content = f.read()
|
2007-06-27 17:44:55 +08:00
|
|
|
self.attach(filename, content, mimetype)
|
|
|
|
|
2009-06-12 21:56:40 +08:00
|
|
|
def _create_message(self, msg):
|
|
|
|
return self._create_attachments(msg)
|
|
|
|
|
|
|
|
def _create_attachments(self, msg):
|
|
|
|
if self.attachments:
|
2010-03-06 05:27:58 +08:00
|
|
|
encoding = self.encoding or settings.DEFAULT_CHARSET
|
2009-06-12 21:56:40 +08:00
|
|
|
body_msg = msg
|
2010-03-06 05:27:58 +08:00
|
|
|
msg = SafeMIMEMultipart(_subtype=self.mixed_subtype, encoding=encoding)
|
2009-06-12 21:56:40 +08:00
|
|
|
if self.body:
|
|
|
|
msg.attach(body_msg)
|
|
|
|
for attachment in self.attachments:
|
|
|
|
if isinstance(attachment, MIMEBase):
|
|
|
|
msg.attach(attachment)
|
|
|
|
else:
|
|
|
|
msg.attach(self._create_attachment(*attachment))
|
|
|
|
return msg
|
|
|
|
|
|
|
|
def _create_mime_attachment(self, content, mimetype):
|
2007-06-27 17:44:55 +08:00
|
|
|
"""
|
2009-06-12 21:56:40 +08:00
|
|
|
Converts the content, mimetype pair into a MIME attachment object.
|
2013-08-21 09:17:26 +08:00
|
|
|
|
|
|
|
If the mimetype is message/rfc822, content may be an
|
|
|
|
email.Message or EmailMessage object, as well as a str.
|
2007-06-27 17:44:55 +08:00
|
|
|
"""
|
|
|
|
basetype, subtype = mimetype.split('/', 1)
|
|
|
|
if basetype == 'text':
|
2010-03-06 05:27:58 +08:00
|
|
|
encoding = self.encoding or settings.DEFAULT_CHARSET
|
2012-08-09 18:12:22 +08:00
|
|
|
attachment = SafeMIMEText(content, subtype, encoding)
|
2013-08-21 09:17:26 +08:00
|
|
|
elif basetype == 'message' and subtype == 'rfc822':
|
|
|
|
# Bug #18967: per RFC2046 s5.2.1, message/rfc822 attachments
|
|
|
|
# must not be base64 encoded.
|
|
|
|
if isinstance(content, EmailMessage):
|
|
|
|
# convert content into an email.Message first
|
|
|
|
content = content.message()
|
|
|
|
elif not isinstance(content, Message):
|
|
|
|
# For compatibility with existing code, parse the message
|
2014-05-29 08:39:14 +08:00
|
|
|
# into an email.Message object if it is not one already.
|
2013-08-21 09:17:26 +08:00
|
|
|
content = message_from_string(content)
|
|
|
|
|
|
|
|
attachment = SafeMIMEMessage(content, subtype)
|
2007-06-27 17:44:55 +08:00
|
|
|
else:
|
|
|
|
# Encode non-text attachments with base64.
|
|
|
|
attachment = MIMEBase(basetype, subtype)
|
|
|
|
attachment.set_payload(content)
|
|
|
|
Encoders.encode_base64(attachment)
|
2009-06-12 21:56:40 +08:00
|
|
|
return attachment
|
|
|
|
|
|
|
|
def _create_attachment(self, filename, content, mimetype=None):
|
|
|
|
"""
|
|
|
|
Converts the filename, content, mimetype triple into a MIME attachment
|
|
|
|
object.
|
|
|
|
"""
|
|
|
|
if mimetype is None:
|
|
|
|
mimetype, _ = mimetypes.guess_type(filename)
|
|
|
|
if mimetype is None:
|
|
|
|
mimetype = DEFAULT_ATTACHMENT_MIME_TYPE
|
|
|
|
attachment = self._create_mime_attachment(content, mimetype)
|
2007-06-27 20:18:05 +08:00
|
|
|
if filename:
|
2012-01-15 10:33:31 +08:00
|
|
|
try:
|
2012-08-09 18:12:22 +08:00
|
|
|
filename.encode('ascii')
|
2012-01-15 10:33:31 +08:00
|
|
|
except UnicodeEncodeError:
|
2013-09-02 18:06:32 +08:00
|
|
|
if six.PY2:
|
2012-08-09 18:12:22 +08:00
|
|
|
filename = filename.encode('utf-8')
|
|
|
|
filename = ('utf-8', '', filename)
|
2008-03-22 05:52:34 +08:00
|
|
|
attachment.add_header('Content-Disposition', 'attachment',
|
|
|
|
filename=filename)
|
2007-06-27 17:44:55 +08:00
|
|
|
return attachment
|
|
|
|
|
2009-11-03 20:53:26 +08:00
|
|
|
|
2007-06-27 20:18:05 +08:00
|
|
|
class EmailMultiAlternatives(EmailMessage):
|
|
|
|
"""
|
|
|
|
A version of EmailMessage that makes it easy to send multipart/alternative
|
|
|
|
messages. For example, including text and HTML versions of the text is
|
|
|
|
made easier.
|
|
|
|
"""
|
2009-06-12 21:56:40 +08:00
|
|
|
alternative_subtype = 'alternative'
|
2007-06-27 20:18:05 +08:00
|
|
|
|
2009-06-12 21:56:40 +08:00
|
|
|
def __init__(self, subject='', body='', from_email=None, to=None, bcc=None,
|
2010-10-08 07:36:02 +08:00
|
|
|
connection=None, attachments=None, headers=None, alternatives=None,
|
2014-11-26 07:05:44 +08:00
|
|
|
cc=None, reply_to=None):
|
2009-06-12 21:56:40 +08:00
|
|
|
"""
|
|
|
|
Initialize a single email message (which can be sent to multiple
|
|
|
|
recipients).
|
|
|
|
|
|
|
|
All strings used to create the message can be unicode strings (or UTF-8
|
|
|
|
bytestrings). The SafeMIMEText class will handle any necessary encoding
|
|
|
|
conversions.
|
|
|
|
"""
|
2014-09-04 20:15:09 +08:00
|
|
|
super(EmailMultiAlternatives, self).__init__(
|
2014-11-26 07:05:44 +08:00
|
|
|
subject, body, from_email, to, bcc, connection, attachments,
|
|
|
|
headers, cc, reply_to,
|
2014-09-04 20:15:09 +08:00
|
|
|
)
|
2011-01-15 13:55:24 +08:00
|
|
|
self.alternatives = alternatives or []
|
2009-06-12 21:56:40 +08:00
|
|
|
|
|
|
|
def attach_alternative(self, content, mimetype):
|
2007-06-27 20:18:05 +08:00
|
|
|
"""Attach an alternative content representation."""
|
2009-06-12 21:56:40 +08:00
|
|
|
assert content is not None
|
|
|
|
assert mimetype is not None
|
|
|
|
self.alternatives.append((content, mimetype))
|
|
|
|
|
|
|
|
def _create_message(self, msg):
|
|
|
|
return self._create_attachments(self._create_alternatives(msg))
|
|
|
|
|
|
|
|
def _create_alternatives(self, msg):
|
2010-03-06 05:27:58 +08:00
|
|
|
encoding = self.encoding or settings.DEFAULT_CHARSET
|
2009-06-12 21:56:40 +08:00
|
|
|
if self.alternatives:
|
|
|
|
body_msg = msg
|
2010-03-06 05:27:58 +08:00
|
|
|
msg = SafeMIMEMultipart(_subtype=self.alternative_subtype, encoding=encoding)
|
2009-06-12 21:56:40 +08:00
|
|
|
if self.body:
|
|
|
|
msg.attach(body_msg)
|
|
|
|
for alternative in self.alternatives:
|
|
|
|
msg.attach(self._create_mime_attachment(*alternative))
|
|
|
|
return msg
|