DOKK / manpages / debian 12 / libemail-folder-perl / Email::Folder::Reader.3pm.en
Email::Folder::Reader(3pm) User Contributed Perl Documentation Email::Folder::Reader(3pm)

Email::Folder::Reader - reads raw RFC822 mails from a box

version 0.860

 use 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;
 }

your standard class-method constructor

returns the next message from the box, or false if there are no more

Returns all the messages in a box

  • Simon Wistow <simon@thegestalt.org>
  • Richard Clamp <richardc@unixbeard.net>
  • Pali <pali@cpan.org>

This 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.

2022-10-14 perl v5.34.0