The Perl and Raku Conference 2025: Greenville, South Carolina - June 27-29 Learn more

use Moose;
our $VERSION = '0.16';
our $AUTHORITY = 'cpan:SACHINJSK';
sub get_contacts {
my ($self, $email, $password) = @_;
# reset errstr
$self->errstr(undef);
my @contacts;
my $ua = $self->ua;
$self->debug("start get_contacts from Mail.com");
# get to login form
$self->get('http://www.mail.com') || return;
$self->submit_form(
form_name => 'mailcom',
fields => {
login => $email,
password => $password,
},
) || return;
my $content = $ua->content();
if ($content =~ /Invalid username\/password/ig) {
$self->errstr('Wrong Username or Password');
return;
}
$self->debug('Login OK');
$self->get("/scripts/addr/addressbook.cgi?showaddressbook=1") || return;
$ua->follow_link( text_regex => qr/Import\/Export/i );
$self->submit_form(
form_name => 'exportform'
) || return;
my $address_content = $ua->content();
@contacts = get_contacts_from_csv($address_content);
return wantarray ? @contacts : \@contacts;
}
sub get_contacts_from_csv {
my ($csv) = shift;
my @contacts;
# first_name, middle_name, last_name, nickname, e-mail.
my @lines = split(/\n/, $csv);
shift @lines; # skip the first line
foreach my $line (@lines) {
$line =~ s/"//g;
my @cols = split(',', $line);
push @contacts, {
name => $cols[0].' '.$cols[2],
email => $cols[4]
};
}
return wantarray ? @contacts : \@contacts;
}
no Moose;
__PACKAGE__->meta->make_immutable;
1;
__END__
=head1 NAME
WWW::Contact::Mail - Get contacts from Mail.com
=head1 SYNOPSIS
use WWW::Contact;
my $wc = WWW::Contact->new();
my @contacts = $wc->get_contacts('itsa@mail.com', 'password');
my $errstr = $wc->errstr;
if ($errstr) {
die $errstr;
} else {
print Dumper(\@contacts);
}
=head1 DESCRIPTION
get contacts from Mail.com. extends L<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
=head1 SEE ALSO
L<WWW::Contact>, L<WWW::Contact::Base>, L<WWW::Mechanize>
=head1 AUTHOR
Sachin Sebastian, C<< <sachinjsk at cpan.org> >>
=head1 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.
=cut