Re: email attachement

2008-02-23 Thread Gunnar Hjalmarsson
zentara wrote: On Thu, 21 Feb 2008 10:52:11 -0500, [EMAIL PROTECTED] (Tony Marquis) wrote: I'm trying to save attachment from emails with a specific subject. but i can't find the right module... You can also ask on perlmonks. What's the point with mentioning that? Is PerlMonks in some way

email attachement

2008-02-21 Thread Tony Marquis
Hi all, I'm trying to save attachment from emails with a specific subject. but i can't find the right module... thank you for your help. My script : # Duh use Net::IMAP::Simple; use Email::Simple; # Create the object my $imap = Net::IMAP::Simple->new('xxx.

Re: Downloading Email Attachement from POP3 Server

2003-03-26 Thread gregg
Here's a code snippet you might find useful. I'm using the "Mail::MboxParser::Mail" module with great results. You need to create the object using the head and body from "Mail::POP3client" before you can call "store_all_attachments". I hope this helps. use Mail::POP3Client; use Mail::

RE: Downloading Email Attachement from POP3 Server

2003-03-26 Thread wiggins
On Wed, 26 Mar 2003 16:39:16 +0530, "Akshay Kumar" <[EMAIL PROTECTED]> wrote: > Hi All, > > Daily a mail with some attachment is sent to an email account. I have got full > access of the email account with pop reading facility. Now, I need to dow

Downloading Email Attachement from POP3 Server

2003-03-26 Thread Akshay Kumar
Hi All, Daily a mail with some attachment is sent to an email account. I have got full access of the email account with pop reading facility. Now, I need to download the attachment of any particular email based on the date. Waiting for TIPS for a script in PERL. Thanx, Akshay