Copied to clipboard

Flag this post as spam?

This post will be reported to the moderators as potential spam to be looked at


  • Inmedia 124 posts 176 karma points
    Dec 11, 2015 @ 09:42
    Inmedia
    0

    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?

  • Pradip 24 posts 116 karma points
    Dec 31, 2015 @ 06:31
    Pradip
    1

    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 :

    enter image description here

Please Sign in or register to post replies

Write your reply to:

Draft