Opened 13 days ago

Closed 13 days ago

Last modified 12 days ago

#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)

Change History (2)

comment:1 by Bhuvnesh, 13 days ago

Resolution: invalid
Status: newclosed

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.

Last edited 13 days ago by Bhuvnesh (previous) (diff)

comment:2 by Antonio Morillas, 12 days ago

OK.

Note: See TracTickets for help on using tickets.
Back to Top