in reply to Re^2: Data Validation
in thread Data Validation

You could try to override "Email::Valid::address" in your code, by adding this line early in your code:
sub Email::Valid::address{return {@_}->{-address}};

                Once it hits the fan, the only rational choice is to sweep it up, package it, and sell it as fertilizer.

Replies are listed 'Best First'.
Re^4: Data Validation
by CalmPerl (Initiate) on Jun 02, 2017 at 12:29 UTC
    Ok Thank You I will try that!