in reply to Re: Data Validation
in thread Data Validation

Hi thanks for the reply, is there a way to skip the validation altogether?

Replies are listed 'Best First'.
Re^3: Data Validation
by NetWallah (Canon) on Jun 01, 2017 at 23:09 UTC
    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.

      Ok Thank You I will try that!