Searched refs:MIMEText (Results 1 – 10 of 10) sorted by relevance
/third_party/python/Lib/test/test_email/ |
D | test_email.py | 27 from email.mime.text import MIMEText 773 m = MIMEText('abc\n') 786 m = MIMEText('É testabc\n') 817 msg = MIMEText('hello world') 820 msg = MIMEText('hello \xf8 world') 823 msg = MIMEText('hello \xf8 world', _charset='iso-8859-1') 831 msg = MIMEText('文\n', _charset='euc-jp') 842 msg = MIMEText('\xe1\xf6\n', 'text', 'ISO-8859-1') 853 msg = MIMEText('\u017c\n', 'text', 'ISO-8859-2') 1004 msg = MIMEText('') [all …]
|
/third_party/python/Lib/email/mime/ |
D | text.py | 14 class MIMEText(MIMENonMultipart): class
|
/third_party/python/Lib/test/ |
D | test_smtplib.py | 495 m = email.mime.text.MIMEText('A test message') 517 m = email.mime.text.MIMEText('A test message') 554 m = email.mime.text.MIMEText('A test message') 583 m = email.mime.text.MIMEText('A test message') 614 m = email.mime.text.MIMEText('A test message') 643 m = email.mime.text.MIMEText('A test message') 680 m = email.mime.text.MIMEText('A test message')
|
/third_party/python/Doc/library/ |
D | email.mime.rst | 229 .. class:: MIMEText(_text, _subtype='plain', _charset=None, *, policy=compat32) 234 :class:`MIMEText` class is used to create MIME objects of major type 244 MIMEText object created will have both a :mailheader:`Content-Type` header
|
D | email.encoders.rst | 16 should not be called explicitly since the :class:`~email.mime.text.MIMEText`
|
/third_party/python/Misc/NEWS.d/ |
D | 3.6.0b1.rst | 745 Don't pass str(_charset) to MIMEText.set_payload(). Patch by Claude Paroz.
|
D | 3.5.3rc1.rst | 957 Don't pass str(_charset) to MIMEText.set_payload(). Patch by Claude Paroz.
|
D | 3.5.0a1.rst | 301 _charset parameter of MIMEText now also accepts email.charset.Charset
|
/third_party/python/Doc/whatsnew/ |
D | 3.5.rst | 1117 The :class:`mime.text.MIMEText <email.mime.text.MIMEText>` constructor now
|
/third_party/python/Misc/ |
D | HISTORY | 8034 - Issue #14380: MIMEText now defaults to utf-8 when passed non-ASCII unicode 18984 email.MIMEText). The old names are still supported for now. Several 19736 _encoder argument to the MIMEText constructor, Message.add_payload(),
|