Account Management
Entities
Actions
Account Management
Entities
Actions
This group of functions allow you to perform various actions to improve the quality of Email Address data.
Check if an email will deliver to an inbox using a third-party provider. An email will not be received in the target email address inbox. The input is a single email address. E.g.
Email (Input) | Authentic | Domain | Local Part | Corporate | Disposable | Role Based |
---|---|---|---|---|---|---|
example@example.com | TRUE | example.com | example | TRUE | FALSE | FALSE |
fakeExample@example.com | #### | example.com | example | TRUE | FALSE | FALSE |
sales@example.com | TRUE | example.com | sales | TRUE | FALSE | TRUE |
Authenticate Email not only allows you to determine the authenticity of an email, but also allows you to ascertain certain attributes of an Email. E.g.
Domain Part: What part of the email is a domain?
Local Part: What is the local part of the email (also known as the prefix or the username)?
Corporate: Is the email corporate (does it belong to a corporation)?
Disposable: Is the email disposable?
Role Based: Is the email role-based?
Input a given name and family name to identify whether both or either match up with a given email. E.g.
Input
Given Name | Family Name | |
---|---|---|
john.smith@example.com | John | Smith |
jane.smith@example.com | John | Smith |
john.shmidt@example.com | John | Smith |
jane.shmidt@example.com | John | Smith |
example@example.com | John | Smith |
Output
Output (Code) | Output (Details) |
---|---|
14 | Given Name and Family Name both found in email |
11 | Given Name Initial and Family Name both found in email |
12 | Given Name and Family Name Initial both found in email |
5 | Given Name Initial and Family Name Initial both found in email |
0 | No Name congruence with email |
Input one or more Email Addresses and find out their domain type and mail box type. E.g.
Input | Domain Type | Mailbox Type |
---|---|---|
example@dqglobal.com | Business | Personal |
example@gmail.com | FreeProvider | Personal |
support@microsoft.com | Business | Generic |
Input one or more Email Addresses and return them in the correct format (if possible).
For example, you can choose to format email to remove extra '@' symbols or an incorrectly input suffix. E.g.
Formatted Email | |
---|---|
example@example.com | example@example.com |
example@@example.com | example@example.com |
example@example..com | example@example.com |
Input one or more email addresses to parse the mail box, local part, domain and top-level domain from them. E.g.
Mailbox | Local Part | Domain | TLD | |
---|---|---|---|---|
test@example.com | test@example.com | test | example.com | com |
Input one or more Email Addresses and identify whether or not they are valid by scoring them TRUE or FALSE. e.g.
Output | |
---|---|
example@example.com | TRUE |
example@@example.com | FALSE |
example@example..com | FALSE |