|
NAMEMail::Address::MobileJp - mobile email address in Japan SYNOPSIS use Mail::Address::MobileJp;
my $email = '123456789@docomo.ne.jp';
if (is_mobile_jp($email)) {
print "$email is mobile email in Japan";
}
# extract mobile email address from an array of addresses
my @mobile = grep { is_mobile_jp($_) } @addr;
DESCRIPTIONMail::Address::MobileJp is an utility to detect an email address is mobile (cellphone) email address or not. This module should be updated heavily :) FUNCTIONThis module exports following function(s).
AUTHORTatsuhiko Miyagawa <miyagawa@bulknews.net> This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself. SEE ALSOMail::Address, http://www.mag2.com/faq/mobile.htm
|