Django

Code

Changeset 7347

Show
Ignore:
Timestamp:
03/21/08 15:35:39 (7 months ago)
Author:
gwilson
Message:

Fixed #6841 -- Don't include bcc recepients in e-mail headers, thanks PhiR.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • django/trunk/django/core/mail.py

    r7183 r7347  
    238238        msg['Date'] = formatdate() 
    239239        msg['Message-ID'] = make_msgid() 
    240         if self.bcc: 
    241             msg['Bcc'] = ', '.join(self.bcc) 
    242240        for name, value in self.extra_headers.items(): 
    243241            msg[name] = value