see Mail :: Message - a common message object something like
my $msg =Mail::Message->new($mail); my $body = $msg->body; my @to = $msg->to; my @from = $msg->from;
or see Email :: Simple - a simple analysis of the format and headers of RFC2822 messages.
Updated:
see also Email :: MIME - Simple MIME message processing.
source share