IsValidEmailAddress
Last updated
Last updated
The IsValidEmailAddress()
function checks whether the input parameter is a valid E-mail address format. The check is done using a validated Regular Expression.
This function is NOT SQL compatible. For more information about SQL compatibility, see our documentation.
Returns true
if email_address
is indeed a valid E-mail address format.
Returns false
if email_address
is not a valid E-mail address format.
This function does NOT check if the e-mail address is an existing address, it only checks if the format is correct according to global e-mail address formatting rules.
Name | Type | Required | Description |
---|---|---|---|
email_address | text | the email address that is validated by the function |