email_verifier
Validate the accuracy and deliverability of an email address by checking its existence and format, enhancing email campaign success and reducing bounce rates.
Instructions
Return the validity of a given email address.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
Yes |
Input Schema (JSON Schema)
{
"properties": {
"email": {
"title": "Email",
"type": "string"
}
},
"required": [
"email"
],
"title": "email_verifierArguments",
"type": "object"
}