Subject: | Space allowed after @ sign |
use Email::Valid;
print (Email::Valid->address('maurice@ hevanet.com') ? 'yes' : 'no');
prints yes...
Why does it allow spaces after the at sign? It returns the corrected
email address but I think it should return false shouldn't it??