mirror of
				https://github.com/django/django.git
				synced 2025-10-31 09:41:08 +00:00 
			
		
		
		
	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
This commit is contained in:
		| @@ -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 | ||||
|   | ||||
		Reference in New Issue
	
	Block a user