in reply to How to use Email::MIME::Attachment::Stripper to download email attachments?
###### Attachment Parse Here ### Create a new parser object: my $parser = new MIME::Parser; ### Tell it where to put things: $parser->output_under("I:/test"); ### Parse an in-core MIME message: my $entity = $parser->parse_data($data);
|
|---|