An question that comes back in many InfoPath Form is how to be sure
that the email address entered by the user is in a correct format?
The step by step guide can be found on:
http://blueinfopath.wordpress.com/2009/11/09/how-to-validate-correct-email-address-input/
Frederik van Lierde
http://SilverSandsAssociates.wordpress.com
Do you follow us already? htpp://Twitter.com/SilverSands_IT
The pattern you specified ([a-z]+@[a-z]+\.[a-z]+) doesn't support
numbers. That would leave out *many* free webmail users
(use...@freewebmailservice.com).
--TonyG
You éade a good point, you need to use the pattern [a-z0-9]+@[a-z0-9]+
\.[a-z]+
This will solve your issue.
I updated my Blog Posts
http://blueinfopath.wordpress.com/2009/11/09/how-to-validate-correct-...