FixedEmailMessage

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
from django.core.mail import EmailMessage

class FixedEmailMessage(EmailMessage):
    def __init__(self, subject='', body='', from_email=None, to=None, cc=None,
                 bcc=None, connection=None, attachments=None, headers=None):
        """
        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.
        """
        to_cc_bcc_types = (type(None), list, tuple)
        # test for typical error: people put strings in to, cc and bcc fields
        # see documentation at http://www.djangoproject.com/documentation/email/
        assert isinstance(to, to_cc_bcc_types)
        assert isinstance(cc, to_cc_bcc_types)
        assert isinstance(bcc, to_cc_bcc_types)
        super(FixedEmailMessage, self).__init__(subject, body, from_email, to,
                                           bcc, connection, attachments, headers)
        if cc:
            self.cc = list(cc)
        else:
            self.cc = []

    def recipients(self):
        """
        Returns a list of all recipients of the email (includes direct
        addressees as well as Bcc entries).
        """
        return self.to + self.cc + self.bcc

    def message(self):
        msg = super(FixedEmailMessage, self).message()
        del msg['Bcc'] # if you still use old django versions
        if self.cc:
            msg['Cc'] = ', '.join(self.cc)
        return msg

More like this

  1. Update only selected model fields by jcrocholl 5 years, 6 months ago
  2. Subclass EmailMultiAlternatives to add CC: option by adamlofts 2 years, 11 months ago
  3. SMTP sink server by twinsant 6 years, 2 months ago
  4. S/MIME Encrypted E-mail by bthomas 3 years, 9 months ago
  5. CheckboxSelectMultiple that renders in columns by rfugger 2 years, 7 months ago

Comments

garywilson (on March 21, 2008):

Bugs get fixed much faster when they are reported in the ticket tracker. In this case, fixed one day after bug was filed.

#

buriy (on April 30, 2008):

oh, it was just lucky bug. i did my job, you did yours -- and everyone is happy. and actually, only trunk version is fixed.

#

(Forgotten your password?)