Interface CheckEmailAddressAvailabilityInput

Input for SudoEmailClient.checkEmailAddressAvailability.

CheckEmailAddressAvailabilityInput

interface CheckEmailAddressAvailabilityInput {
    domains?: Set<string>;
    localParts: Set<string>;
}

Properties

Properties

domains?: Set<string>

The domains of the email address to check. If left undefined, will use default recognized by the service.

localParts: Set<string>

The local parts of the email address to check. Local parts require the following criteria: - At least one local part is required. - A maximum of 5 local parts per API request. - Local parts must not exceed 64 characters. - Local parts must match the following pattern: ^[a-zA-Z0-9](\.?[-_a-zA-Z0-9])*$