I got a new user who first entered incorrect email address, then after he didnt' receive email address he registered one more record this time using a correct email address. I'm sure it would be great to add a simple filter to the email text box control to check if the entered string can be email address or not. It should be written in JS, but if it's easier it can also be done in C# and it should shoot when the user wants to change or enter email address.
The address string:
1. Cannot be blank.
2. The length cannot be less than 5 characters, it's obvious: A@B.C.
2. Should include @.
3. Should include at least one dot.
4. The dot and the @ sign cannot be at the first or last position of email address.
5. The email address cannot have space and other restricted characters.
Dimi