I'm running OpenBD CFML isValid('email','[email protected]') and my result is 'NO'.
.education is a valid domain - why does this fail?
I'm running OpenBD CFML isValid('email','[email protected]') and my result is 'NO'.
.education is a valid domain - why does this fail?
It turns out to be an issue with the regex used behind the scenes to match valid domains.
The regex in place didn't account for domains as long as "education".
I fixed it and it's been merged, should be in the nightly by now, grab the latest update and you should be able to use isValid("email", "[email protected]") just fine. Viva la open source.