Beefy Boxes and Bandwidth Generously Provided by pair Networks
Syntactic Confectionery Delight
 
PerlMonks  

Re: MIME Problem with Email

by dree (Monsignor)
on Jun 11, 2002 at 09:51 UTC ( [id://173413]=note: print w/replies, xml ) Need Help??


in reply to MIME Problem with Email

Use MIME::Tools.
In particular try:
use strict; use MIME::Parser; my $parser = new MIME::Parser; $parser->output_under("./"); #directory where to store the components my $entity = $parser->parse(\*STDIN) or die "parse failed\n"; $entity->dump_skeleton;
and from the console, write:
$perl abovecode.pl < mail.txt
So in ./ you'll find a directory like "msg-10237 (cut) 2055-0" in which you have the components.

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://173413]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others sharing their wisdom with the Monastery: (4)
As of 2024-04-26 00:15 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found