|
NAMEWWW::Contact::BG::Mail - Get contacts/addressbook from mail.bg SYNOPSIS use WWW::Contact;
my $wc = WWW::Contact->new();
my @contacts = $wc->get_contacts('itsa@mail.bg', 'password');
my $errstr = $wc->errstr;
if ($errstr) {
die $errstr;
} else {
print Dumper(\@contacts);
}
DESCRIPTIONGet contacts from mail.bg. extends WWW::Contact::Base SEE ALSOWWW::Contact, WWW::Mechanize, Text::vCard::Addressbook AUTHORDimitar Petrov, "<mitko at datamax.bg>" COPYRIGHT & LICENSECopyright 2009 Dimitar Petrov, all rights reserved. This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
|