Hi,

I'm using Email::Valid to check the validity of submitted email
addresses, and for some reason, it thinks that
"mike[at)skybird-travel.com" (replace [at) with @, obviously) contains
a invalid domain.

I'm using the module like so:
eval {
  $addr = Email::Valid->address( -address => $value,
        -mxcheck => 1,
        -tldcheck => 1,
   );
};

&registration_error('E_INVALIDEMAIL',"Email","Email address domain is
invalid.") if $@;

I suspect I'm just missing something, but I don't seem to be able to
figure it out.

Thanks in advance, 
Mike

-- 
Report problems: http://perl.apache.org/bugs/
Mail list info: http://perl.apache.org/maillist/modperl.html
List etiquette: http://perl.apache.org/maillist/email-etiquette.html

Reply via email to