Overview
This node verifies the validity of an email address using the Emailable API service. It is useful in scenarios where you need to check if an email address is deliverable before sending emails, such as in marketing campaigns, user registration validation, or data cleaning processes. For example, before adding a new subscriber to your mailing list, you can use this node to ensure the email is valid and reduce bounce rates.
Properties
| Name | Meaning |
|---|---|
| Dirección De Email | The email address to verify (e.g., test@domain.com) |
Output
The node outputs JSON data with the following structure for each input email:
email: The email address that was verified.deliverable: A boolean indicating whether the email is considered deliverable (true) or not (false).score: A numeric score representing the quality or confidence level of the email verification result.
No binary data output is produced by this node.
Example output JSON:
{
"email": "test@domain.com",
"deliverable": true,
"score": 0.95
}
Dependencies
- Requires an API key credential for the Emailable service.
- The node makes HTTP GET requests to
https://api.emailable.com/v1/verify. - The API key must be configured in the node's credentials settings.
Troubleshooting
- Invalid API Key or Authentication Errors: Ensure the API key credential is correctly set up and active.
- Network Issues: Verify network connectivity to
api.emailable.com. - Unexpected Response Format: If the API changes its response format, the node might fail; check for updates or contact support.
- Empty or Invalid Email Input: Make sure the email property is provided and correctly formatted.
Links and References
- Emailable API Documentation (for detailed API usage and parameters)