![]() |
![]()
| ![]() |
![]()
NAMEEmail::Folder::Reader - reads raw RFC822 mails from a box VERSIONversion 0.860 SYNOPSISuse Email::Folder::Reader; my $box = Email::Folder::Reader->new('somebox'); print $box->messages; or, as an iterator use Email::Folder::Reader; my $box = Email::Folder::Reader->new('somebox'); while ( my $mail = $box->next_message ) { print $mail; } METHODSnew($filename, %options)your standard class-method constructor ->next_messagereturns the next message from the box, or false if there are no more ->messagesReturns all the messages in a box AUTHORS
COPYRIGHT AND LICENSEThis software is copyright (c) 2006 by Simon Wistow. This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.
|