Home
last modified time | relevance | path

Searched full:email (Results 1 – 25 of 7286) sorted by relevance

12345678910>>...292

/aosp_15_r20/external/python/cpython2/Doc/library/
Demail.rst1 :mod:`email` --- An email and MIME handling package
4 .. module:: email
5 :synopsis: Package supporting the parsing, manipulating, and generating email messages,
14 The :mod:`email` package is a library for managing email messages, including
18 :mod:`mimecntl`. It is specifically *not* designed to do any sending of email
20 modules such as :mod:`smtplib` and :mod:`nntplib`. The :mod:`email` package
25 The primary distinguishing feature of the :mod:`email` package is that it splits
26 the parsing and generating of email messages from the internal *object model*
27 representation of email. Applications using the :mod:`email` package deal
36 The following sections describe the functionality of the :mod:`email` package.
[all …]
Demail.mime.rst1 :mod:`email.mime`: Creating email and MIME objects from scratch
4 .. module:: email.mime
11 :class:`~email.message.Message` objects by hand. In fact, you can also take an
12 existing structure and add new :class:`~email.message.Message` objects, move them
16 You can create a new object structure by creating :class:`~email.message.Message`
18 messages though, the :mod:`email` package provides some convenient subclasses to
23 .. currentmodule:: email.mime.base
27 Module: :mod:`email.mime.base`
30 :class:`~email.message.Message`. Ordinarily you won't create instances
39 <email.message.Message.add_header>`.
[all …]
Demail.parser.rst1 :mod:`email.parser`: Parsing email messages
4 .. module:: email.parser
5 :synopsis: Parse flat text email messages to produce a message object structure.
9 from whole cloth by instantiating :class:`~email.message.Message` objects and
10 stringing them together via :meth:`~email.message.Message.attach` and
11 :meth:`~email.message.Message.set_payload` calls, or they
12 can be created by parsing a flat text representation of the email message.
14 The :mod:`email` package provides a standard parser that understands most email
17 :class:`~email.message.Message` instance of the object structure. For simple,
20 return ``True`` from its :meth:`~email.message.Message.is_multipart` method, and
[all …]
/aosp_15_r20/external/webrtc/infra/config/
H A Dluci-notify.cfg10 email {
17 email {
37 email {
44 email {
64 email {
71 email {
91 email {
98 email {
118 email {
125 email {
[all …]
/aosp_15_r20/frameworks/base/core/tests/coretests/src/android/util/
H A DPatternsTest.java491 assertFalse("Should not match email address", in testAutoLinkWebUrl_doesNotMatchEmailAddress()
743 String email = "[email protected]"; in testAutoLinkEmailAddress_matchesShortValidEmail() local
744 assertTrue("Should match short valid email: " + email, in testAutoLinkEmailAddress_matchesShortValidEmail()
745 Patterns.AUTOLINK_EMAIL_ADDRESS.matcher(email).matches()); in testAutoLinkEmailAddress_matchesShortValidEmail()
751 String email = "email@android.com"; in testAutoLinkEmailAddress_matchesRegularEmail() local
752 assertTrue("Should match email: " + email, in testAutoLinkEmailAddress_matchesRegularEmail()
753 Patterns.AUTOLINK_EMAIL_ADDRESS.matcher(email).matches()); in testAutoLinkEmailAddress_matchesRegularEmail()
759 String email = "email@e.somelongdomainnameforandroid.abc.uk"; in testAutoLinkEmailAddress_matchesEmailWithMultipleSubdomains() local
760 assertTrue("Should match email: " + email, in testAutoLinkEmailAddress_matchesEmailWithMultipleSubdomains()
761 Patterns.AUTOLINK_EMAIL_ADDRESS.matcher(email).matches()); in testAutoLinkEmailAddress_matchesEmailWithMultipleSubdomains()
[all …]
/aosp_15_r20/cts/tests/tests/text/src/android/text/util/cts/
H A DLinkifyTest.java518 verifyAddLinksWithWebUrlFails("Should not recognize email address as URL", url); in testAddLinks_shouldNotAddEmailAddressAsUrl()
758 String email = "[email protected]"; in testAddLinks_email_matchesShortValidEmail() local
759 verifyAddLinksWithEmailSucceeds("Should match email: " + email, email); in testAddLinks_email_matchesShortValidEmail()
761 email = "[email protected]"; in testAddLinks_email_matchesShortValidEmail()
762 verifyAddLinksWithEmailSucceeds("Should match email: " + email, email); in testAddLinks_email_matchesShortValidEmail()
767 String email = "email@android.com"; in testAddLinks_email_matchesRegularEmail() local
768 verifyAddLinksWithEmailSucceeds("Should match email: " + email, email); in testAddLinks_email_matchesRegularEmail()
773 String email = "email@e.somelongdomainnameforandroid.abc.uk"; in testAddLinks_email_matchesEmailWithMultipleSubdomains() local
774 verifyAddLinksWithEmailSucceeds("Should match email: " + email, email); in testAddLinks_email_matchesEmailWithMultipleSubdomains()
779 String email = "[email protected]"; in testAddLinks_email_matchesLocalPartWithDot() local
[all …]
/aosp_15_r20/external/python/cpython3/Doc/library/
Demail.rst1 :mod:`email` --- An email and MIME handling package
4 .. module:: email
6 email messages.
11 **Source code:** :source:`Lib/email/__init__.py`
15 The :mod:`email` package is a library for managing email messages. It is
16 specifically *not* designed to do any sending of email messages to SMTP
18 :mod:`smtplib` and :mod:`nntplib`. The :mod:`email` package attempts to be as
23 The overall structure of the email package can be divided into three major
27 The central component of the package is an "object model" that represents email
29 object model interface defined in the :mod:`~email.message` sub-module. The
[all …]
Demail.mime.rst1 :mod:`email.mime`: Creating email and MIME objects from scratch
4 .. module:: email.mime
7 **Source code:** :source:`Lib/email/mime/`
11 This module is part of the legacy (``Compat32``) email API. Its functionality
12 is partially replaced by the :mod:`~email.contentmanager` in the new API, but
19 :class:`~email.message.Message` objects by hand. In fact, you can also take an
20 existing structure and add new :class:`~email.message.Message` objects, move them
24 You can create a new object structure by creating :class:`~email.message.Message`
26 messages though, the :mod:`email` package provides some convenient subclasses to
31 .. currentmodule:: email.mime.base
[all …]
Demail.policy.rst1 :mod:`email.policy`: Policy Objects
4 .. module:: email.policy
12 **Source code:** :source:`Lib/email/policy.py`
16 The :mod:`email` package's prime focus is the handling of email messages as
17 described by the various email and MIME RFCs. However, the general format of
18 email messages (a block of header fields each consisting of a name followed by
21 email. Some of these uses conform fairly closely to the main email RFCs, some
22 do not. Even when working with email, there are times when it is desirable to
24 interoperate with email servers that do not themselves follow the standards, or
28 Policy objects give the email package the flexibility to handle all these
[all …]
Demail.parser.rst1 :mod:`email.parser`: Parsing email messages
4 .. module:: email.parser
5 :synopsis: Parse flat text email messages to produce a message object structure.
7 **Source code:** :source:`Lib/email/parser.py`
12 created from whole cloth by creating an :class:`~email.message.EmailMessage`
14 using :meth:`~email.message.EmailMessage.set_content` and related methods, or
15 they can be created by parsing a serialized representation of the email
18 The :mod:`email` package provides a standard parser that understands most email
21 :class:`~email.message.EmailMessage` instance of the object structure. For
24 will return ``True`` from its :meth:`~email.message.EmailMessage.is_multipart`
[all …]
Demail.compat32-message.rst3 :mod:`email.message.Message`: Representing an email message using the :data:`~email.policy.compat32…
6 .. module:: email.message
7 :synopsis: The base class representing email messages in a fashion
13 :class:`~email.message.EmailMessage` class, without the methods added by that
16 :class:`~email.message.EmailMessage` class, are not recommended unless you are
22 policy :attr:`~email.policy.Compat32`. If you are going to use another policy,
23 you should be using the :class:`~email.message.EmailMessage` class instead.
25 An email message consists of *headers* and a *payload*. Headers must be
57 If *policy* is specified (it must be an instance of a :mod:`~email.policy`
60 <email.policy.Compat32>` policy, which maintains backward compatibility with
[all …]
Demail.generator.rst1 :mod:`email.generator`: Generating MIME documents
4 .. module:: email.generator
5 :synopsis: Generate flat text email messages from a message structure.
7 **Source code:** :source:`Lib/email/generator.py`
12 the email message represented by a message object structure. You will need to
18 As with the :mod:`email.parser` module, you aren't limited to the functionality
20 the bundled generator knows how to generate most email in a standards-compliant
21 way, should handle MIME and non-MIME email messages just fine, and is designed
23 assuming the same non-transforming :mod:`~email.policy` is used for both. That
25 :class:`~email.parser.BytesParser` class and then regenerating the serialized
[all …]
/aosp_15_r20/external/aws-sdk-java-v2/services/ses/src/main/resources/codegen-resources/
H A Dservice-2.json5 "endpointPrefix":"email",
8 "serviceFullName":"Amazon Simple Email Service",
12 "uid":"email-2010-12-01",
32 …href=\"https://docs.aws.amazon.com/ses/latest/dg/receiving-email-concepts.html#receiving-email-con…
50 …ates a configuration set.</p> <p>Configuration sets enable you to publish email sending events. Fo…
71 …tion is the Amazon Web Services service to which Amazon SES publishes the email sending events ass…
104email template.</p> <p>For more information about custom verification email templates, see <a href…
121 …rs, see the <a href=\"https://docs.aws.amazon.com/ses/latest/dg/receiving-email-ip-filtering-conso…
143 …es, see the <a href=\"https://docs.aws.amazon.com/ses/latest/dg/receiving-email-receipt-rules-cons…
160 …href=\"https://docs.aws.amazon.com/ses/latest/dg/receiving-email-concepts.html#receiving-email-con…
[all …]
/aosp_15_r20/external/aws-sdk-java-v2/services/pinpointemail/src/main/resources/codegen-resources/
H A Ddocs-2.json3Email Service</fullname> <p> This document contains reference information for the <a href=\"https:…
5email by including a reference to the configuration set in the headers of the email. When you appl…
7 …ount. You can associate a pool with a configuration set. When you send an email that uses that con…
8email identity for use with Amazon Pinpoint. In Amazon Pinpoint, an identity is an email address o…
9email by including a reference to the configuration set in the headers of the email. When you appl…
12 …tity": "<p>Deletes an email identity that you previously verified for use with Amazon Pinpoint. An…
13 …"GetAccount": "<p>Obtain information about the email-sending status and capabilities of your Amazo…
14email, and more.</p> <p>In Amazon Pinpoint, <i>configuration sets</i> are groups of rules that you…
19email by including a reference to the configuration set in the headers of the email. When you appl…
21 …s a list of all of the email identities that are associated with your Amazon Pinpoint account. An …
[all …]
H A Dservice-2.json5 "endpointPrefix":"email",
8 "serviceAbbreviation":"Pinpoint Email",
9 "serviceFullName":"Amazon Pinpoint Email Service",
10 "serviceId":"Pinpoint Email",
13 "uid":"pinpoint-email-2018-07-26"
20 "requestUri":"/v1/email/configuration-sets"
32email by including a reference to the configuration set in the headers of the email. When you appl…
38 "requestUri":"/v1/email/configuration-sets/{ConfigurationSetName}/event-destinations"
55 "requestUri":"/v1/email/dedicated-ip-pools"
66 …ount. You can associate a pool with a configuration set. When you send an email that uses that con…
[all …]
/aosp_15_r20/external/aws-sdk-java-v2/services/sesv2/src/main/resources/codegen-resources/
H A Dservice-2.json5 "endpointPrefix":"email",
9 "serviceFullName":"Amazon Simple Email Service",
20 "requestUri":"/v2/email/metrics/batch"
36 "requestUri":"/v2/email/export-jobs/{JobId}/cancel"
51 "requestUri":"/v2/email/configuration-sets"
63email by specifying the name of the configuration set when you call the Amazon SES API v2. When yo…
69 "requestUri":"/v2/email/configuration-sets/{ConfigurationSetName}/event-destinations"
86 "requestUri":"/v2/email/contact-lists/{ContactListName}/contacts"
96 …"documentation":"<p>Creates a contact, which is an end-user who is receiving the email, and adds t…
102 "requestUri":"/v2/email/contact-lists"
[all …]
/aosp_15_r20/external/icing/icing/index/iterator/
H A Ddoc-hit-info-iterator-by-uri_test.cc59 .AddType(SchemaTypeConfigBuilder().SetType("email")) in SetUp()
114 .SetKey("namespace", "email/1") in TEST_F()
115 .SetSchema("email") in TEST_F()
118 .SetKey("namespace", "email/2") in TEST_F()
119 .SetSchema("email") in TEST_F()
122 .SetKey("namespace", "email/3") in TEST_F()
123 .SetSchema("email") in TEST_F()
137 uris->add_document_uris("email/1"); in TEST_F()
138 uris->add_document_uris("email/3"); in TEST_F()
151 .SetKey("namespace", "email/1") in TEST_F()
[all …]
/aosp_15_r20/external/icing/icing/util/
H A Ddocument-validator_test.cc153 .SetKey(kDefaultNamespace, "email/1") in SimpleEmailBuilder()
198 DocumentProto email = SimpleEmailBuilder().Build(); in TEST_F() local
199 EXPECT_THAT(document_validator_->Validate(email), IsOk()); in TEST_F()
206 DocumentProto email = SimpleEmailBuilder().SetNamespace("").Build(); in TEST_F() local
207 EXPECT_THAT(document_validator_->Validate(email), in TEST_F()
213 DocumentProto email = SimpleEmailBuilder().SetUri("").Build(); in TEST_F() local
214 EXPECT_THAT(document_validator_->Validate(email), in TEST_F()
234 DocumentProto email = SimpleEmailBuilder().SetSchema("").Build(); in TEST_F() local
235 EXPECT_THAT(document_validator_->Validate(email), in TEST_F()
241 DocumentProto email = in TEST_F() local
[all …]
/aosp_15_r20/external/python/cpython3/Lib/test/test_email/
Dtest_policy.py5 import email.errors
6 import email.policy
7 import email.parser
8 import email.generator
9 import email.message
10 from email import headerregistry
30 # These default values are the ones set on email.policy.default.
36 'header_factory': email.policy.EmailPolicy.header_factory,
38 'content_manager': email.policy.EmailPolicy.content_manager,
40 'message_factory': email.message.EmailMessage,
[all …]
/aosp_15_r20/external/python/google-api-python-client/docs/dyn/
Dadmin_directory_v1.groups.html117 …dentifies the group in the API request. The value can be the group&#x27;s email address, group ali…
130 …dentifies the group in the API request. The value can be the group&#x27;s email address, group ali…
139 …s the ability to send messages to groups of people using the group&#x27;s email address. For more …
141 &quot;aliases&quot;: [ # List of a group&#x27;s alias email addresses.
146email&quot;: &quot;A String&quot;, # The group&#x27;s email address. If your account has multiple …
151 … non-editable alias email addresses that are outside of the account&#x27;s primary domain or subdo…
165 …s the ability to send messages to groups of people using the group&#x27;s email address. For more …
167 &quot;aliases&quot;: [ # List of a group&#x27;s alias email addresses.
172email&quot;: &quot;A String&quot;, # The group&#x27;s email address. If your account has multiple …
177 … non-editable alias email addresses that are outside of the account&#x27;s primary domain or subdo…
[all …]
Didentitytoolkit_v3.relyingparty.html167 &quot;identifier&quot;: &quot;A String&quot;, # The email or federated ID of the user.
191 …ot;registered&quot;: True or False, # Whether the user is registered if the identifier is an email.
251 &quot;email&quot;: &quot;A String&quot;, # The email of the user.
252 &quot;emailVerified&quot;: True or False, # Whether the email has been verified.
262 &quot;email&quot;: &quot;A String&quot;, # User&#x27;s email at IDP.
303 { # Request to sign in with email.
304 &quot;email&quot;: &quot;A String&quot;, # The email address of the user.
313 { # Response of email signIn.
314 &quot;email&quot;: &quot;A String&quot;, # The user&#x27;s email.
334 &quot;email&quot;: [ # The list of emails of the users to inquiry.
[all …]
Dcloudsupport_v2beta.cases.html141 …nsible for an action. # The user who created the case. Note: The name and email will be obfuscated…
142 …d, it is inferred from credentials supplied during case creation. When an email is provided, a dis…
143email&quot;: &quot;A String&quot;, # The email address of the actor. If not provided, it is inferr…
145 …as authenticated when the corresponding action was taken. This will be an email address, if one is…
153 &quot;subscriberEmailAddresses&quot;: [ # The email addresses to receive updates on this case.
177 …nsible for an action. # The user who created the case. Note: The name and email will be obfuscated…
178 …d, it is inferred from credentials supplied during case creation. When an email is provided, a dis…
179email&quot;: &quot;A String&quot;, # The email address of the actor. If not provided, it is inferr…
181 …as authenticated when the corresponding action was taken. This will be an email address, if one is…
189 &quot;subscriberEmailAddresses&quot;: [ # The email addresses to receive updates on this case.
[all …]
/aosp_15_r20/cts/tests/tests/contactsprovider/src/android/provider/cts/contacts/
H A DContactsContract_DataTest.java30 import android.provider.ContactsContract.CommonDataKinds.Email;
143 cv1.put(Data.MIMETYPE, Email.CONTENT_ITEM_TYPE); in cv1.put()
144 cv1.put(Email.DATA, "[email protected]"); in cv1.put()
145 cv1.put(Email.TYPE, Email.TYPE_HOME); in cv1.put()
157 cv3.put(Data.MIMETYPE, Email.CONTENT_ITEM_TYPE); in cv3.put()
158 cv3.put(Email.DATA, "[email protected]"); in cv3.put()
159 cv3.put(Email.TYPE, Email.TYPE_WORK); in cv3.put()
164 cv4.put(Data.MIMETYPE, Email.CONTENT_ITEM_TYPE); in cv4.put()
165 cv4.put(Email.DATA, "[email protected]"); in cv4.put()
166 cv4.put(Email.TYPE, Email.TYPE_HOME); in cv4.put()
[all …]
/aosp_15_r20/prebuilts/tools/common/m2/repository/commons-codec/commons-codec/1.10/
H A Dcommons-codec-1.10.pom66 <email>[email protected]</email>
71 <email>[email protected]</email>
77 <email>[email protected]</email>
82 <email>[email protected]</email>
87 <email>[email protected]</email>
92 <email>[email protected]</email>
97 <email>[email protected]</email>
104 <email>[email protected]</email>
109 <email>[email protected]</email>
116 <email>[email protected]</email>
[all …]
/aosp_15_r20/external/icing/icing/result/
H A Dresult-retriever-v2_projection_test.cc88 .SetType("Email") in SetUp()
264 // 1. Add two Email documents in TEST_F()
269 .SetSchema("Email") in TEST_F()
282 .SetSchema("Email") in TEST_F()
292 std::vector<SectionId> hit_section_ids = {GetSectionId("Email", "name"), in TEST_F()
293 GetSectionId("Email", "body")}; in TEST_F()
302 type_property_mask->set_schema_type("Email"); in TEST_F()
334 .SetSchema("Email") in TEST_F()
344 .SetSchema("Email") in TEST_F()
352 // 1. Add two Email documents in TEST_F()
[all …]

12345678910>>...292