#35390 closed Bug (invalid)
Missing BCC entry in message function.
Reported by: | Antonio Morillas | Owned by: | nobody |
---|---|---|---|
Component: | Core (Mail) | Version: | |
Severity: | Normal | Keywords: | |
Cc: | Triage Stage: | Unreviewed | |
Has patch: | no | Needs documentation: | no |
Needs tests: | no | Patch needs improvement: | no |
Easy pickings: | no | UI/UX: | no |
Description
At django/django/core/mail/message.py missing bcc entry in message function.
New line 269:
self._set_list_header_if_not_empty(msg, "Bcc", self.bcc)
Note:
See TracTickets
for help on using tickets.
The reason why Bcc is missing in message function is because we do not want to list bcc addresses of mail in the header (as its a blind copy), instead we use recipients to include all email addresses (to, cc and bcc) to which mail is to be sent. For better understanding, you can have a look at this test.
I'm closing this ticket for now. If you are facing some issue while sending an email, feel free to reopen this ticket along with proper steps to reproduce it.