Beefy Boxes and Bandwidth Generously Provided by pair Networks
"be consistent"
 
PerlMonks  

Re: Removing Headers from E-mail Messages.

by g0n (Priest)
on Jan 29, 2006 at 10:57 UTC ( [id://526271]=note: print w/replies, xml ) Need Help??


in reply to Removing Headers from E-mail Messages.

You may find Net::POP3Client easier.

use Net::POP3Client; my $pop= new Mail::POP3Client ( USER => "myuser", PASSWORD => "mypass", HOST => "127.0.0.1"); for (my $i=1;$i <= $pop->Count;$i++) { my $head = $pop->Head($i); my $body = $pop->Body($i); }

(Code untested).

--------------------------------------------------------------

"If there is such a phenomenon as absolute evil, it consists in treating another human being as a thing."

John Brunner, "The Shockwave Rider".

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others lurking in the Monastery: (9)
As of 2024-04-19 09:09 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found