Skip to content

Commit

Permalink
properly encode non-ascii sender headers
Browse files Browse the repository at this point in the history
  • Loading branch information
Takumi2008 committed Mar 28, 2021
1 parent 63d1cdf commit 50e6617
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion flanker/mime/message/headers/encoding.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

_log = logging.getLogger(__name__)

_ADDRESS_HEADERS = ('From', 'To', 'Delivered-To', 'Cc', 'Bcc', 'Reply-To')
_ADDRESS_HEADERS = ('From', 'To', 'Delivered-To', 'Cc', 'Bcc', 'Reply-To', 'Sender')


def to_mime(key, value):
Expand Down

0 comments on commit 50e6617

Please sign in to comment.