The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.

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