
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
n8n-nodes-emailvalidation
Advanced tools
n8n node to validate and verify email addresses via emailvalidation.io.

This package provides the EmailValidation community node for n8n. It integrates the emailvalidation.io API to validate and verify email addresses.
To make your custom node available to the community, you must create it as an npm package, and submit it to the npm registry.
If you would like your node to be available on n8n cloud you can also submit your node for verification.
You need the following installed on your development machine:
npm install n8n -g
These are the basic steps for working with the starter. For detailed guidance on creating and publishing nodes, refer to the documentation.
git clone https://github.com/<your organization>/<your-repo-name>.git
npm i to install dependencies./nodes and /credentials. Modify the examples, or replace them with your own nodes.package.json to match your details.npm run lint to check for errors or npm run lintfix to automatically fix errors when possible.Refer to our documentation on creating nodes for detailed information on building your own nodes.
Validate and verify email addresses using the emailvalidation.io API.
EmailValidation API.https://api.emailvalidation.io/v1Authentication is sent via query parameter apikey (the API also supports header-based auth). See docs: https://emailvalidation.io/docs/.
catch_all=1 to perform catch-all detection (paid plans)Per endpoint docs: https://emailvalidation.io/docs/info
The node performs a GET /v1/info with email, optional catch_all, and apikey query parameters. Example request:
curl -G "https://api.emailvalidation.io/v1/info" \
--data-urlencode "email=support@emailvalidation.io" \
--data-urlencode "apikey=YOUR-API-KEY"
{
"email": "[email protected]",
"user": "support",
"tag": "",
"domain": "emailvalidation.io",
"smtp_check": true,
"mx_found": true,
"did_you_mean": "",
"role": true,
"disposable": false,
"score": 0.64,
"state": "deliverable",
"reason": "valid_mailbox",
"free": false,
"format_valid": true,
"catch_all": null
}
See documentation for field meanings and state/reason descriptions: https://emailvalidation.io/docs/info
FAQs
n8n node to validate and verify email addresses via emailvalidation.io.
We found that n8n-nodes-emailvalidation demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.