1
0
mirror of https://github.com/django/django.git synced 2025-04-15 04:44:37 +00:00

[1.11.x] Tested EmailMessage(attachments=[MIMEText])

Backport of aedfe0ddd76fc37c83341c35c79ab63330ffded8 from master
This commit is contained in:
kalombo 2017-04-07 17:54:50 -04:00 committed by Tim Graham
parent 5d35e8eb06
commit a95eba7d98

View File

@ -387,6 +387,12 @@ class MailTests(HeadersCheckMixin, SimpleTestCase):
self.assertEqual(payload[0].get_content_type(), 'multipart/alternative')
self.assertEqual(payload[1].get_content_type(), 'application/pdf')
def test_attachments_MIMEText(self):
txt = MIMEText('content1')
msg = EmailMessage(attachments=[txt])
payload = msg.message().get_payload()
self.assertEqual(payload[0], txt)
def test_non_ascii_attachment_filename(self):
"""Regression test for #14964"""
headers = {"Date": "Fri, 09 Nov 2001 01:08:47 -0000", "Message-ID": "foo"}