NAME

WWW::Contact::Mail - Get contacts from Mail.com

SYNOPSIS

use WWW::Contact::Mail;

my $wc       = WWW::Contact::Mail->new();
my @contacts = $wc->get_contacts('email@mail.com', 'password');
my $errstr   = $wc->errstr;
if ($errstr) {
    die $errstr;
} else {
    print Dumper(\@contacts);
}

DESCRIPTION

get contacts from Mail.com. extends WWW::Contact::Base

Mail.com provides email addresses under different domain names. We currently support the most popular ones. mail.com email.com iname.com cheerful.com consultant.com europe.com mindless.com earthling.net myself.com post.com techie.com usa.com writeme.com

SEE ALSO

WWW::Contact, WWW::Contact::Base, WWW::Mechanize::GZip

AUTHOR

Sachin Sebastian, <sachinjsk at cpan.org>

COPYRIGHT & LICENSE

Copyright 2008 Sachin Sebastian, all rights reserved.

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