Haven't used the module myself, but see inline.

Mike(mickako)Blezien wrote:
Hi Wiggins,

Thanks for the info. I was sure that the Mail::POP3Client had something in it to extract the body of the message, but haven't been able to get it to work with the test script below....do you possible have an example of sample script that may do this ??

<snip>

      for(my $i = 1; $i <= $count; $i++ ) {
        $mails[$i] = $pop->Retrieve($i);
my @message_body = $pop->Body($i);
print @message_body;

Should do the same as you were doing before. @message_body should contain what you want.

        print "$mails[$i]\n";
       # $pop->Delete($i);
     }
<snip>

If it doesn't, do you get an error? Or can you provide more info?

http://danconia.org


--
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to