Validate Email Node This node allows you to validate an email address.

Node Inputs

  1. Email to validate: The email you want to validate
    • Type: Text
If Custom Validator is selected:
  1. API Key: The API key to use
    • Type: Text

Node Parameters

On the face of the node:
  1. Model: The validation model you want to use. You can choose between Regex and Custom Validators.
    • Type: Dropdown
If Custom Validator is selected:
  1. Provider: The validation provider to use. The options available are Hunter, Debounce and Proxycurl. The default value is Hunter.
    • Type: Dropdown

Node Outputs

  1. Status: The validation status of the email
    • Type: Boolean
    • Example usage: {{email_validator_0.status}}

Example

The below example shows a pipeline that determines the validation status of an email address.
  1. Text Node: Contains the email address to validate
  2. Validate Email Node: Validates the email address
    • Email to validate: {{text_0.text}}
    • Model: Regex
  3. Output Node: Displays the validation status
    • Output: {{email_validator_0.status}}
Validate Email Example