Welcome to the SRP Forum! Please refer to the SRP Forum FAQ post if you have any questions regarding how the forum works.
Email address validation
I know that I can look for several issues such as only one @ sign in the data and the address not ending in a dot one at the time, but I was wondering if there is something out there that I can call and does all the validating for me and I just need to see if it passes or fails.
Comments
https://www.emailhippo.com/en-us/verify-email-address/api/a
Their API is pretty simple I'm sure there are others that do similar things and I can't personally vouch for any of them as I haven't tried them but now I wanna...
Are you saying that we already have a email validation subroutine?
I haven't used that approach either.
Do you know off hand what it actually validates, that is, does it validate that the email address is indeed a valid email address or does it validate that the string complies with specific characteristics like containing "@"?
PHONE_FORMAT for example basically validates that the user has entered either seven or ten digits and then displays it in a nice readable format. It doesn't validate that the number actually exists and belongs to someone.
I'm assuming EMAIL_FORMAT is a similar animal but I don't have source for that.
That said, that may be all that Charles is looking for as well but I'm curious for my own benefit now.
Email_Format has been modified to allow domains that start with numbers- e.g. mike@123.com
>>I'm assuming EMAIL_FORMAT is a similar animal but I don't have source for that.
Yes