If you use an mbox style mailbox (most people do) you can parse it in all kinds of crazy ways (eg, pull all images, etc) with Mail::Box::Manager. Actually that may work with any kind of mailbox.

Here's a simple program to start you off:
#!/usr/bin/perl -w use strict; use Mail::Box::Manager; my $mgr = new Mail::Box::Manager; my $box = $mgr->open(folder=>"/you/mail/somebox"); my $c = 0; while (my $msg = $box->message($c)) { my @sender = $msg->from; my $id = $msg->messageId; print "\n$id\n$sender[0][0]\n"; $c++; }
That will print the message id number and sender for each message. To deal with attachments, you want to look into $msg->parts. Note that a "folder" here is actually a single file.

In reply to Re: Perl to open embedded email? by halfcountplus
in thread Perl to open embedded email? by maylin

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.