• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

lib/Email/Valid/H26-Jun-2006-8337

t/H26-Jun-2006-3424

ChangesH A D26-Jun-2006548 1813

MANIFESTH A D26-Jun-2006168 98

META.ymlH A D26-Jun-2006398 1311

Makefile.PLH A D26-Jun-2006224 109

READMEH A D18-Mar-2006825 2920

README

1NAME
2    Email::Valid::Loose - Email::Valid which allows dot before at mark
3
4SYNOPSIS
5      use Email::Valid::Loose;
6
7      # same as Email::Valid
8      my $addr     = 'read_rfc822.@docomo.ne.jp';
9      my $is_valid = Email::Valid::Loose->address($addr);
10
11DESCRIPTION
12    Email::Valid::Loose is a subclass of Email::Valid, which allows . (dot)
13    before @ (at-mark). It is invalid in RFC822, but is commonly used in
14    some of mobile phone addresses in Japan (like docomo.ne.jp or
15    jp-t.ne.jp).
16
17IMPLEMENTATION
18    This module overrides "rfc822" method in Email::Valid.
19
20AUTHOR
21    Tatsuhiko Miyagawa <miyagawa@bulknews.net>
22
23    This library is free software; you can redistribute it and/or modify it
24    under the same terms as Perl itself.
25
26SEE ALSO
27    the Email::Valid manpage, the Mail::Address::MobileJp manpage
28
29