I'm doing a registration form where people can register, in that I will be asking for thier email address's If i could put a regex
validation that captures any other emails
example:
[email protected], or xxx@ yahoo.com, and only allow [email protected] i could implement a system that sends an email to the registering person asking them to validate it. I know how to implement the email bit I'm just stuck at this validation part. hope this makes sense
Is there a way to modify the default email validation expression
\w+([-+.']\w+)@\w+([-.]\w+).\w+([-.]\w+)*