User Tools

Site Tools


email

Email

This group of functions allow you to perform various actions to improve the quality of Email Address data.


Authenticate

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?


Congruence

Input a given name and family name to identify whether both or either match up with a given email. E.g.

Input

Email 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

Derive

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

Format

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.

Email Formatted Email
example@example.com example@example.com
example@@example.com example@example.com
example@example..com example@example.com

Parse

Input one or more email addresses to parse the mail box, local part, domain and top-level domain from them. E.g.

Email Mailbox Local Part Domain TLD
test@example.com test@example.com test example.com com

Validate

Input one or more Email Addresses and identify whether or not they are valid by scoring them TRUE or FALSE. e.g.

Email Output
example@example.com TRUE
example@@example.com FALSE
example@example..com FALSE
email.txt · Last modified: 2023/03/09 16:09 by hayden.law