string.isValidEmailAddress
| Syntax |
string.isValidEmailAddress (s)
|
| Params |
s is an email address in any common format.
|
| Action |
Check an email address, s, for conformance to RFC 822 mailbox syntax.
|
| Returns |
Returns true if s is a valid email address according to RFC 822.
|
| Examples |
string.isValidEmailAddress ("webmaster@userland.com") » true
string.isValidEmailAddress ("webmaster@userland@com")
|
| Notes |
Errors are notified by a scriptError if the email address is not valid.
|
| See Also |
string.cleanMailAddress
|