What is a proper Regex code to allow special characters like . _ - in email field
I have this Regex right now /^[a-zA-Z0-9]+@[a-zA-Z0-9]+\.[A-Za-z]+$/,
The above Regex only allow e-mails such as joedow@gmail.com
joe.dow@gmail.com does not work
How can I fix this ?