Searched defs:MIMEText (Results 1 - 12 of 12) sorted by relevance

/external/python/cpython2/Doc/includes/
H A Demail-simple.py5 from email.mime.text import MIMEText namespace
11 msg = MIMEText(fp.read())
H A Demail-alternative.py6 from email.mime.text import MIMEText namespace
34 part1 = MIMEText(text, 'plain')
35 part2 = MIMEText(html, 'html')
H A Demail-dir.py19 from email.mime.text import MIMEText namespace
81 msg = MIMEText(fp.read(), _subtype=subtype)
/external/python/cpython2/Lib/email/mime/
H A Dtext.py7 __all__ = ['MIMEText']
15 class MIMEText(MIMENonMultipart):
14 class MIMEText(MIMENonMultipart): class in inherits:MIMENonMultipart
/external/python/cpython3/Lib/email/mime/
H A Dtext.py7 __all__ = ['MIMEText']
15 class MIMEText(MIMENonMultipart):
14 class MIMEText(MIMENonMultipart): class in inherits:MIMENonMultipart
/external/toolchain-utils/cros_utils/
H A Demail_sender.py11 from email.mime.text import MIMEText namespace
67 msg.attach(MIMEText(text_to_send, msg_type))
/external/toolchain-utils/crb/
H A Dcrb_driver.py11 from email.mime.text import MIMEText namespace
242 msg = MIMEText(text_to_send)
/external/autotest/site_utils/
H A Dgmail_lib.py26 from email.mime.text import MIMEText namespace
86 message = MIMEText(self.message_text)
/external/clang/tools/scan-view/share/
H A DReporter.py31 from email.mime.text import MIMEText namespace
96 msg = MIMEText(fp.read(), _subtype=subtype)
129 msg.attach(MIMEText(mainMsg, _subtype='text/plain'))
/external/python/cpython2/Lib/email/test/
H A Dtest_email_renamed.py23 from email.mime.text import MIMEText namespace
518 msg = MIMEText('hello world')
524 msg = MIMEText('hello world')
527 msg = MIMEText('hello \xf8 world')
530 msg = MIMEText('hello \xf8 world', _charset='iso-8859-1')
638 msg = MIMEText('')
1031 # Test the basic MIMEText class
1034 self._msg = MIMEText('hello there')
1051 msg = MIMEText('hello there', _charset='us-ascii')
1070 intro = MIMEText('''\
[all...]
H A Dtest_email.py28 from email.MIMEText import MIMEText namespace
586 msg = MIMEText('hello world')
589 msg = MIMEText('hello \xf8 world')
592 msg = MIMEText('hello \xf8 world', _charset='iso-8859-1')
600 msg = email.MIMEText.MIMEText('\xca\xb8', _charset='euc-jp')
707 msg = MIMEText('')
1071 # Test the basic MIMEText class
1074 self._msg = MIMEText('hell
[all...]
/external/python/cpython3/Lib/test/test_email/
H A Dtest_email.py30 from email.mime.text import MIMEText namespace
740 m = MIMEText('abc\n')
753 m = MIMEText('É testabc\n')
784 msg = MIMEText('hello world')
787 msg = MIMEText('hello \xf8 world')
790 msg = MIMEText('hello \xf8 world', _charset='iso-8859-1')
798 msg = MIMEText('文\n', _charset='euc-jp')
809 msg = MIMEText('\xe1\xf6\n', 'text', 'ISO-8859-1')
820 msg = MIMEText('\u017c\n', 'text', 'ISO-8859-2')
971 msg = MIMEText('')
[all...]

Completed in 383 milliseconds