logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

Email::Valid::Loose - Email::Valid which allows dot before at mark

Author

       Tatsuhiko Miyagawa <miyagawa@bulknews.net>

       This library is free software; you can redistribute it and/or modify it under the same terms as Perl
       itself.

Description

       Email::Valid::Loose is a subclass of Email::Valid, which allows . (dot) before @ (at-mark). It is invalid
       in RFC822, but is commonly used in some of mobile phone addresses in Japan (like docomo.ne.jp or
       jp-t.ne.jp).

Implementation

       This module overrides "rfc822" method in Email::Valid.

Name

       Email::Valid::Loose - Email::Valid which allows dot before at mark

See Also

       Email::Valid, Mail::Address::MobileJp

perl v5.34.0                                       2022-06-13                           Email::Valid::Loose(3pm)

Synopsis

         use Email::Valid::Loose;

         # same as Email::Valid
         my $addr     = 'read_rfc822.@docomo.ne.jp';
         my $is_valid = Email::Valid::Loose->address($addr);

See Also