#!/usr/bin/perl -l use strict; use warnings; use Mail::POP3Client; my $host = 'pop.example.com'; my $user = 'user'; my $password = 'password'; my $pop = Mail::POP3Client->new( HOST => $host, USESSL => 1, USER => $user, PASSWORD => $password, ); print "You have ", $pop->Count, "messages";
In reply to Re: how to use Net::POP3::SSLWrapper
by Khen1950fx
in thread how to use Net::POP3::SSLWrapper
by swilting
| For: | Use: | ||
| & | & | ||
| < | < | ||
| > | > | ||
| [ | [ | ||
| ] | ] |