if ($FORM{'Employee_email'} !~ /\w+@[a-z0-9.\-]+\.\w+/) {
push(@ErrorMSGs, '<li>You did not fill in a valid email address.</li>');
$bad_employee_email = 1;
$error++;
I would like the field to accept email address with capital letters after the @ and I don't speak perl - little help? :)