This function checks that the specified e-mail address is structurally and syntactically valid.
IsValidEmailAddress([Email])
Where:
Email is the Email address to check
Rule | Meaning |
---|---|
IsValidEmailAddress("someone@email.com") | This function validates the email address "someone@email.com" and returns True as it is structurally and syntactically valid. |
Outcome | |
---|---|
"someone@email.com" | True |
"" | False |
".someone@email.com" | False |
"hello" | False |
"some..one@email.com" | False |
"some.one@email.com" | True |
"some@one@email.com" | False |
"some][one@email.com" | False |
"someone.@email.com" | False |
"someone@email..uk" | False |
"someone@email.co.uk" | True |
"someone.email.com" | False |