The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

FormValidator::Lite::Constraint::Email - E-Mail address validation

CONSTRAINTS

EMAIL
    $validator->check(
        email => [qw/EMAIL/],
    );

Check the parameter is valid E-Mail address or not. If you are Japanese programmer, you would use EMAIL_LOOSE instead.

This constraint uses Email::Valid.

EMAIL_LOOSE
    $validator->check(
        email => [qw/EMAIL_LOOSE/],
    );

Check the parameter is valid E-Mail address or not. But allow some "loose" addresses.

This constraint uses Email::Valid::Loose.

SEE ALSO

Email::Valid::Loose, FormValidator::Lite