Opened 4 weeks ago

Closed 4 weeks ago

Last modified 4 weeks 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, 4 weeks ago

Resolution: invalid
Status: newclosed

The reason why Bcc is missing 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.

Version 0, edited 4 weeks ago by Bhuvnesh (next)

comment:2 by Antonio Morillas, 4 weeks ago

OK.

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