Commit 1e23ad0b authored by Gary Wilson Jr's avatar Gary Wilson Jr
Browse files

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


git-svn-id: http://code.djangoproject.com/svn/django/trunk@7347 bcc190cf-cafb-0310-a4f2-bffc1f526a37
parent 8f9e7035
Loading
Loading
Loading
Loading
+0 −2
Original line number Diff line number Diff line
@@ -237,8 +237,6 @@ class EmailMessage(object):
        msg['To'] = ', '.join(self.to)
        msg['Date'] = formatdate()
        msg['Message-ID'] = make_msgid()
        if self.bcc:
            msg['Bcc'] = ', '.join(self.bcc)
        for name, value in self.extra_headers.items():
            msg[name] = value
        return msg