in reply to Re: Using Net::IMAP::Simple to read emails
in thread Using Net::IMAP::Simple to read emails
foreach my $msg( 1 .. $number_of_messages ) { my $email = Email::Simple->new( join '', @{$server->get( $msg +)} ); print $email->header('Subject'), "\n"; }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: Using Net::IMAP::Simple to read emails
by bgreenlee (Friar) on Dec 22, 2004 at 23:25 UTC | |
by Anonymous Monk on Dec 23, 2004 at 01:49 UTC |