You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

21 lines
433 B
Perl

use Mail::POP3Client;
$mail = new Mail::POP3Client("username", "password",
"pop3.yourserver.com");
if ($mail->Count) {
print "You have ", $mail->Count, " new message(s).\n";
print "Storing message(s) to disk.\n";
open FILEHANDLE, ">file.txt";
for($loop_index = 1; $loop_index <= $mail->Count; $loop_index++) {
print FILEHANDLE $mail->HeadAndBody(1);
}
close FILEHANDLE;
}