verify_email_send
Verify email addresses using trykitt by sending a validation request. Associate custom data with the verification process for tracking or context.
Instructions
verify an email using trykitt.
Args:
email: The email address to verify
custom_data: Optional custom data to associate with the request
Input Schema
Name | Required | Description | Default |
---|---|---|---|
custom_data | No | ||
Yes |
Input Schema (JSON Schema)
{
"properties": {
"custom_data": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Custom Data"
},
"email": {
"title": "Email",
"type": "string"
}
},
"required": [
"email"
],
"title": "verify_email_sendArguments",
"type": "object"
}