in reply to Re: One-off mime splitter
in thread One-off mime splitter
This is all from memory - I wrote a mail filter last week to do some virus scanning. But might help.foreach my $email ($entity->parts()) { # $email is now a MIME::Entity # I.e. one of the original emails that # was mistakenly combined into one. # either print the email, or capture it with # one of the "as_string" methods and use OLE # to stuff it back into Outlook. $email->print(\*STDOUT) }
|
|---|