Press Ctrl / CMD + C to copy this to your clipboard.
This post will be reported to the moderators as potential spam to be looked at
When you submit an email in a form, I have found that it is case sensitive by default. Meaning that [email protected] is valid, while [email protected] is not valid.
How can I disable the case sensitive validation?
Hello Inmedia,
Yes, Contour - Email is case sensitive by default because of Regex conditions.
Default regex condition is like : ^[a-z0-9-]+(.[a-z0-9-]+)@[a-z0-9-]+(.[a-z0-9-]+)(.[a-z]{2,4})$.
So if you want to insert "[email protected]" then we need to changed Regex values to the below :
^[a-z-A-Z-0-9-]+(.[a-z-A-Z-0-9-]+)@[a-z0-9-]+(.[a-z0-9-]+)(.[a-z]{2,4})$
See the below screenshot for more details :
is working on a reply...
Write your reply to:
Upload image
Image will be uploaded when post is submitted
CONTOUR - Email is case sensitive
When you submit an email in a form, I have found that it is case sensitive by default. Meaning that [email protected] is valid, while [email protected] is not valid.
How can I disable the case sensitive validation?
Hello Inmedia,
Yes, Contour - Email is case sensitive by default because of Regex conditions.
Default regex condition is like : ^[a-z0-9-]+(.[a-z0-9-]+)@[a-z0-9-]+(.[a-z0-9-]+)(.[a-z]{2,4})$.
So if you want to insert "[email protected]" then we need to changed Regex values to the below :
^[a-z-A-Z-0-9-]+(.[a-z-A-Z-0-9-]+)@[a-z0-9-]+(.[a-z0-9-]+)(.[a-z]{2,4})$
See the below screenshot for more details :
is working on a reply...