Changes between Initial Version and Version 1 of Ticket #36478


Ignore:
Timestamp:
Jun 24, 2025, 10:47:44 PM (2 months ago)
Author:
Mike Edmunds
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #36478 – Description

    initial v1  
    1 Encoded text attachments set directly in the EmailMessage.attachments property are not processed the same as the same content passed to in EmailMessage(attachments=...) or EmailMessage.attach(...).
     1Encoded text attachments set directly in the EmailMessage.attachments property are not processed like the same content passed to EmailMessage(attachments=...) or EmailMessage.attach(...).
    22
    3 #27007 added special EmailMessage.attach() handling for text content encoded as utf-8 bytes. That code is also used for the attachments constructor argument, but not for attachments set directly:
     3#27007 added EmailMessage.attach() handling for text content encoded as utf-8 bytes. That code is also used for the attachments constructor argument, but not for attachments set directly on the object property:
    44
    55{{{#!python
Back to Top