Searched defs:email (Results 1 - 25 of 74) sorted by relevance

123

/external/autotest/client/common_lib/
H A Dmail.py1 import os, email, smtplib namespace
6 Send out a plain old text email. It uses sendmail by default, but
10 from_address: the email address to put in the "From:" field
12 strings to put in the "To:" field of the email
14 strings to put in the "Cc:" field of the email
15 subject: the email subject
16 message_body: the body of the email. there's no special
30 message = email.Message.Message()
H A Dmail_unittest.py4 import mail, email namespace
54 message = email.Message.Message()
/external/python/cpython2/Doc/includes/
H A Demail-unpack.py7 import email namespace
44 msg = email.message_from_file(fp)
53 # email message can't be used to overwrite important files
/external/python/cpython3/Doc/includes/
H A Demail-unpack.py6 import email namespace
9 from email.policy import default
26 msg = email.message_from_binary_file(fp, policy=default)
39 # email message can't be used to overwrite important files
/external/python/cpython3/Lib/email/mime/
H A Dbase.py3 # Contact: email-sig@python.org
9 import email.policy namespace
11 from email import message
27 policy = email.policy.compat32
/external/boringssl/src/crypto/x509/
H A Dvpm_int.h66 char *email; /* If not NULL email address to match */ member in struct:X509_VERIFY_PARAM_ID_st
/external/llvm/utils/
H A Dwciia.py63 email = line[2:].strip() variable
64 code_owner['email'] = email
/external/protobuf/examples/
H A Dadd_person.cc20 cout << "Enter email address (blank for none): ";
21 string email; local
22 getline(cin, email);
23 if (!email.empty()) {
24 person->set_email(email);
/external/python/cpython2/Lib/email/
H A D__init__.py3 # Contact: email-sig@python.org
5 """A package for parsing, handling, and generating email messages."""
50 # of importing email since those cascadingly import most of the rest of the
51 # email package.
57 from email.parser import Parser
66 from email.parser import Parser
73 # email 4.0 module names), to old-style names (email 3.0 module names).
78 self.__name__ = 'email.' + module_name
88 # email
118 import email.mime namespace
[all...]
H A Dcharset.py3 # Contact: email-sig@python.org
13 import email.base64mime namespace
14 import email.quoprimime namespace
16 from email import errors
17 from email.encoders import encode_7or8bit
68 # them to the real ones used in email.
161 """Map character sets to their email properties.
163 This class provides information about the requirements imposed on email
167 information on how to use that character set in an email in an
171 when used in email header
[all...]
H A Dheader.py3 # Contact: email-sig@python.org
16 import email.quoprimime namespace
17 import email.base64mime namespace
19 from email.errors import HeaderParseError
20 from email.charset import Charset
58 _max_append = email.quoprimime._max_append
71 An email.errors.HeaderParseError may be raised when certain decoding error
99 dec = email.quoprimime.header_decode(encoded)
105 dec = email.base64mime.decode(encoded)
351 # Each encoding can be email
[all...]
/external/python/cpython2/Lib/test/
H A Dtest_old_mailbox.py108 import email.parser namespace
113 email.parser.Parser().parse):
/external/python/cpython3/Lib/test/test_email/
H A Dtest_pickleable.py5 import email namespace
6 import email.message namespace
7 from email import policy
8 from email.headerregistry import HeaderRegistry
48 msg_params['parsed'] = (email.message_from_string(textwrap.dedent("""\
57 msg_params['created'] = (email.message.Message(policy=policy.default),)
H A Dtorture_test.py3 # A torture test of the email package. This should not be run as part of the
4 # standard Python test suite since it requires several meg of email messages
6 # Python distro, but are available as part of the standalone email package at
17 import email namespace
18 from email import __file__ as testfile
19 from email.iterators import _structure
38 msg = email.message_from_file(fp)
H A D__init__.py4 import email namespace
5 from email.message import Message
6 from email._policybase import compat32
42 return email.message_from_file(fp, policy=self.policy)
49 return email.message_from_string(string, message, policy=policy)
56 return email.message_from_bytes(bytestring, message, policy=policy)
H A Dtest_parser.py2 import email namespace
4 from email.message import Message, EmailMessage
5 from email.policy import default
19 msg = email.message_from_string("Subject: bogus\n\nmsg\n",
27 msg = email.message_from_file(source_file,
40 # more numerous than allowed by the email RFCs; make sure we are only
93 return email.message_from_file(f, *args, **kw)
96 parsers = (email.message_from_string, message_from_file)
99 return email.message_from_bytes(s.encode(), *args, **kw)
103 return email
[all...]
/external/python/cpython3/Tools/scripts/
H A Dmailerdaemon.py5 import email.message namespace
15 class ErrorMessage(email.message.Message):
17 email.message.Message.__init__(self)
42 # If a re, it should contain at least a group (?P<email>...) which
43 # should refer to the email address. The re can also contain a group
49 # multiple email addresses. The second re is matched (not searched)
53 'error: (?P<reason>unresolvable): (?P<email>.+)',
55 '(?P<email>[^ \n].*)\n( .*\n)?'),
56 'remote execution.*\n.*rmail (?P<email>.+)',
58 ' +(?P<email>
[all...]
/external/python/cpython2/Lib/email/test/
H A Dtest_email_torture.py3 # A torture test of the email package. This should not be run as part of the
4 # standard Python test suite since it requires several meg of email messages
6 # Python distro, but are available as part of the standalone email package at
15 from email.test.test_email import TestEmailBase
18 import email namespace
19 from email import __file__ as testfile
20 from email.iterators import _structure
40 msg = email.message_from_file(fp)
/external/python/cpython3/Lib/email/
H A Dcontentmanager.py2 import email.charset namespace
3 import email.message namespace
4 import email.errors namespace
5 from email import quoprimime
107 except email.errors.HeaderDefect as exc:
188 email.charset.ALIASES.get(charset, charset),
225 raw_data_manager.add_set_handler(email.message.Message, set_message_content)
H A Dcharset.py3 # Contact: email-sig@python.org
14 import email.base64mime namespace
15 import email.quoprimime namespace
17 from email import errors
18 from email.encoders import encode_7or8bit
69 # them to the real ones used in email.
173 """Map character sets to their email properties.
175 This class provides information about the requirements imposed on email
179 information on how to use that character set in an email in an
183 when used in email header
[all...]
/external/autotest/client/cros/
H A Dservice_login.js11 gaia.chromeOSLogin.attemptLogin = function(email, password, attemptToken) {
14 'email': email,
31 var email = emailFormElement.value;
35 gaia.chromeOSLogin.attemptLogin(email, passwd, attemptToken);
/external/clang/tools/scan-view/share/
H A DReporter.py26 import email, mimetypes, smtplib namespace
27 from email import encoders
28 from email.message import Message
29 from email.mime.base import MIMEBase
30 from email.mime.multipart import MIMEMultipart
31 from email.mime.text import MIMEText
82 # Lifted from python email module examples.
/external/google-breakpad/src/common/linux/
H A Dgoogle_crashdump_uploader.cc48 const string& email,
60 email,
74 const string& email,
86 email,
100 const string& email,
112 email_ = email;
189 parameters_["email"] = email_;
43 GoogleCrashdumpUploader(const string& product, const string& version, const string& guid, const string& ptime, const string& ctime, const string& email, const string& comments, const string& minidump_pathname, const string& crash_server, const string& proxy_host, const string& proxy_userpassword) argument
69 GoogleCrashdumpUploader(const string& product, const string& version, const string& guid, const string& ptime, const string& ctime, const string& email, const string& comments, const string& minidump_pathname, const string& crash_server, const string& proxy_host, const string& proxy_userpassword, LibcurlWrapper* http_layer) argument
95 Init(const string& product, const string& version, const string& guid, const string& ptime, const string& ctime, const string& email, const string& comments, const string& minidump_pathname, const string& crash_server, const string& proxy_host, const string& proxy_userpassword, LibcurlWrapper* http_layer) argument
/external/libxml2/example/
H A Dgjobread.c34 xmlChar *email; member in struct:person
69 ret->email = xmlNodeListGetString(doc, cur->xmlChildrenNode, 1);
84 if (cur->email) printf(" email: %s\n", cur->email);
/external/mockito/src/test/java/org/mockitousage/matchers/
H A DCapturingArgumentsTest.java46 public void email(Integer ... personId) { method in class:CapturingArgumentsTest.BulkEmailService
69 bulkEmailService.email(12);
82 bulkEmailService.email(11, 12);
96 bulkEmailService.email(11, 12, 13);

Completed in 509 milliseconds

123