Help for this page

Select Code to Download


  1. or download this
    sub email
    {
        my ($class, $value) = @_;
    ...
    
        return "$1\@$2\.$3";
    }
    
  2. or download this
    my $email = Validate->email( param( 'email' ) );
    push @errors, "Missing or invalid e-mail address '$email'\n" unless $e
    +mail;