| Net-POP3-PerMsgHandler documentation | Contained in the Net-POP3-PerMsgHandler distribution. |
Net::POP3::PerMsgHandler::Message - object for per_message callback
Version 0.01
return message length.
return message as RFC2822 format strings. (Envelope-from, headers and body)
returns a reference to an array which contains the lines of message read from the server.
returns Email::MIME instance.
returns Email::MIME instance stripped by Email::MIME::Attachment::Stripper.
returns Mail::Message instance.
returns Mail::Message instance stripped by Mail::Message::Attachment::Stripper.
Net::POP3::PerMsgHandler, Net::POP3, Email::MIME, Email::MIME::Attachment::Stripper, Mail::Message, Mail::Message::Attachment::Stripper
bokutin, <bokutin at cpan.org>
Copyright 2007 bokutin, all rights reserved.
This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
| Net-POP3-PerMsgHandler documentation | Contained in the Net-POP3-PerMsgHandler distribution. |
package Net::POP3::PerMsgHandler::Message;
our $VERSION = '0.01'; use strict; use warnings; use base qw(Class::Accessor::Fast); __PACKAGE__->mk_accessors( qw/ size rfc2822 array_ref email_mime email_mime_stripped mail_message mail_message_stripped / );
1;