Reputation: 251
Is there any package or any other way to verify the entered email address is exist or not. SendGrid will send whatever email address you are passing but it is not telling the input email address is exists or not.
Please let me know if there is an way to verify it in React.js or Node.js.
Thanks in advance.
Upvotes: 2
Views: 4665
Reputation: 11
npm install deep-email-validator
https://www.npmjs.com/package/deep-email-validator
This dependency is going to take care of all the heavy lifting for us.It carries out the following tests:
Upvotes: 1
Reputation: 6356
You need to use third party API's for that. See: https://geekflare.com/email-verification-api/
Upvotes: 0