the above rejects any upper case characters in the email address but mobile devices have a tendency to automatically start a new sentence with a capital and this then gets rejected.
I didn't think case mattered in emails so shouldn't it let any capitalisation through?
Yeah the capitalization in e-mail should not really matter - Where is the above Regex expressions from? Are they something that you are using on forms fields yourself? Or is it something from Contour/Forms?
I think you might be able to benefit from this service in order to test whether your regex is working or not https://regex101.com/
Saying that, just noticed that it seems to be a caching thing as the form has changed on the editing url but not the www url even though they point to the same files
Email address regex rejects any upper case values
the above rejects any upper case characters in the email address but mobile devices have a tendency to automatically start a new sentence with a capital and this then gets rejected.
I didn't think case mattered in emails so shouldn't it let any capitalisation through?
I tried changing this to
but this didn't work either.
Is there anything I can do as we had two customers complain about the same problem?
Thanks
Hi Steve
Yeah the capitalization in e-mail should not really matter - Where is the above Regex expressions from? Are they something that you are using on forms fields yourself? Or is it something from Contour/Forms?
I think you might be able to benefit from this service in order to test whether your regex is working or not https://regex101.com/
/Jan
It's something from the Contour forms standard install - it's in templates/Contact form.ucf
Saying that, just noticed that it seems to be a caching thing as the form has changed on the editing url but not the www url even though they point to the same files
This is the regex I use, it should match all RFC 5322 compliant email addresses:
is working on a reply...