Opened 6 years ago

Closed 6 years ago

#28912 closed Cleanup/optimization (fixed)

EmailMessage.message() should not set a blank To: field when EmailMessage.to is empty

Reported by: Jon Dufresne Owned by: nobody
Component: Core (Mail) Version: dev
Severity: Normal Keywords:
Cc: Triage Stage: Ready for checkin
Has patch: yes Needs documentation: no
Needs tests: no Patch needs improvement: no
Easy pickings: no UI/UX: no

Description

EmailMessage.message() always sets a To: header, see:

https://github.com/django/django/blob/a9e5ac823df8ba8b786b6450c967ca378c008d0e/django/core/mail/message.py#L257

In my project, emails are sent to Cc: or Bcc: recipients without a To: recipient.

Some mail backends are very strict about allowed headers and their values. For example, Amazon Simple Email Service (SES) validates all recipient headers to contain valid email addresses. It fails without delivery if any header contains an invalid address. For some details, see:

https://boto3.readthedocs.io/en/latest/reference/services/ses.html#SES.Client.send_raw_email

The message must include at least one recipient email address. The recipient address can be a To: address, a CC: address, or a BCC: address. If a recipient email address is invalid (that is, it is not in the format UserName@[SubDomain.]Domain.TopLevelDomain ), the entire message will be rejected, even if the message contains other recipients that are valid.

SES considers blank as invalid. When sending an email serialized by EmailMessage.message() to Cc: or Bcc: only addresses, SES fails with an error. To: avoid the error, Django can avoid setting the To header when EmailMessage.to is empty.

Change History (4)

comment:1 by Jon Dufresne, 6 years ago

Has patch: set

comment:2 by Claude Paroz, 6 years ago

Triage Stage: UnreviewedAccepted

Makes sense.

comment:3 by Claude Paroz, 6 years ago

Triage Stage: AcceptedReady for checkin

comment:4 by Tim Graham <timograham@…>, 6 years ago

Resolution: fixed
Status: newclosed

In da82939:

Fixed #28912 -- Made EmailMessage.message() omit an empty To header.

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