Module Values.EmailAddressInsightsMailboxEvaluationsSource

Contains individual validation checks performed on an email address.

Sourcetype nonrec t = {
  1. hasValidSyntax : EmailAddressInsightsVerdict.t option;
    (*

    Checks that the email address follows proper RFC standards and contains valid characters in the correct format.

    *)
  2. hasValidDnsRecords : EmailAddressInsightsVerdict.t option;
    (*

    Checks that the domain exists, has valid DNS records, and is configured to receive email.

    *)
  3. mailboxExists : EmailAddressInsightsVerdict.t option;
    (*

    Checks that the mailbox exists and can receive messages without actually sending an email.

    *)
  4. isRoleAddress : EmailAddressInsightsVerdict.t option;
    (*

    Identifies role-based addresses (such as admin@, support@, or info@) that may have lower engagement rates.

    *)
  5. isDisposable : EmailAddressInsightsVerdict.t option;
    (*

    Checks disposable or temporary email addresses that could negatively impact your sender reputation.

    *)
  6. isRandomInput : EmailAddressInsightsVerdict.t option;
    (*

    Checks if the input appears to be random text.

    *)
}
Sourceval make : ?hasValidSyntax:??? -> ?hasValidDnsRecords:??? -> ?mailboxExists:??? -> ?isRoleAddress:??? -> ?isDisposable:??? -> ?isRandomInput:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Structure of (string * [> `Enum of string ]) list ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t