boba poorna
boba poorna

Reputation: 251

Verify input email address is exist or not in React.js or Node.js

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

Answers (2)

itshomer
itshomer

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:

  • Validates the email regex
  • Checks for common typos
  • Determines if an email was generated by disposable email service.
  • Checks for MX records on the DNS server.
  • Determines if the SMTP server is running.
  • Validates the existence of the mailbox on the SMTP server.

Upvotes: 1

Or Assayag
Or Assayag

Reputation: 6356

You need to use third party API's for that. See: https://geekflare.com/email-verification-api/

Upvotes: 0

Related Questions