I've realized the above emailValidator function. But it's only a syntatic validation. How can I create an email address validator that checks if really that email exist?
Asked
Active
Viewed 48 times
0
-
Please add a code snippet instead of posting a screenshot or image of it. – Kurt Van den Branden Dec 26 '20 at 11:10
1 Answers
1
You cannot determine if an email-address exists, only by having a look on it. You can only check if the format is correct.
If you want to be sure, you would have to sort of ask the email-provider if the desired account exists.
You can send an email and if there is a mailserver listening AND you get no error, there should be a high probability the email exists.
What are you really trying to do?

Alexander Klement
- 112
- 6
-
I'm trying to make a signup form and I want to make sure the email exist – Alessandro Dec 27 '20 at 21:17