in reply to Re: Saving certain email attachements using MIME::Tools
in thread Saving certain email attachements using MIME::Tools
Update
foreach $x (@attypes){ if ($subentity->mime_type =~ m/$x/i){ $attachment = $subentity->bodyhandle->print(); push @attachment, $attachment; print "x = $x subentity =".$subentity->mime_type."\n"; push @attname, $subentity->head->mime_attr('content-disposition. +filename'); } }
The attachment prints out but is not stored in $attachment. @attname now holds the attachment name correctly. All that remains is figuring out how to store the attachement into a variable for later use.
Neil Watson
watson-wilson.ca
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: Re: Saving certain email attachements using MIME::Tools
by blahblahblah (Priest) on Sep 03, 2002 at 04:28 UTC |