in reply to Re: Removing Signature from Email
in thread Removing Signature from Email
could any1 help me plzuse Mail::POP3Client; $pop = new Mail::POP3Client( USER => "*****", PASSWORD => "*****", HOST => "127.0.0.1" ); open(OUTPUT,">mail.xml") or die; $id=0; for( $i = 1; $i <= $pop->Count(); $i++ ) { $id++; print OUTPUT "<message>\n"; $header=$pop->Head( $i ); $body=$pop->Body($i); $header =~ m#^From: (.*?)$#m; $from=$1; $header =~ m#^To: (.*?)$#m; $to=$1; $header =~ m#^Subject: (.*?)$#m; $subject=$1; $header =~ m#^Date: (.*?)$#m; $date=$1; #print "$header\n"; print OUTPUT "<from>$from</from>\n"; print OUTPUT "<to>$to</to>\n"; print OUTPUT "<subject>$subject</subject>\n"; print OUTPUT "<date>$date</date>\n"; print "Msg ID: $id\n"; #have to edit here if ($body=~/^--$/) { next; } else { print OUTPUT "<body>\n$body\n<\body>\n"; } #ends print OUTPUT "</message>\n"; } $pop->Close();
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: Re: Removing Signature from Email
by Wodin (Acolyte) on Apr 08, 2001 at 14:10 UTC |