Opened 5 months ago

Closed 5 months ago

Last modified 5 months 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, 5 months 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 5 months ago by Bhuvnesh (previous) (diff)

comment:2 by Antonio Morillas, 5 months ago

OK.

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