logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

Email::Outlook::Message.pm - Read Outlook .msg files

Author

       Matijs van Zuijlen, "matijs@matijs.net"

Bugs

       Not all data that is in the .msg file is converted. There  are  some  parts  whose  meaning  escapes  me,
       although  more  documentation  on  MIME properties is available these days. Other parts do not make sense
       outside of Outlook and Exchange.

       GPG signed mail is not processed correctly. Neither are attachments of type 'appledoublefile'.

       It would be nice if we could write .MSG files too, but that will require quite a big rewrite.

Description

       Parses .msg message files as produced by Microsoft Outlook.

Methods

new($msg,$verbose)
               Parse  the  file  pointed  at  by  $msg.  Set $verbose to a true value to print information about
               skipped parts of the .msg file on STDERR.

       to_email_mime
               Output result as an Email::MIME object.

Name

       Email::Outlook::Message.pm - Read Outlook .msg files

Synopsis

         use Email::Outlook::Message;

         my $msg = new Email::Outlook::Message $filename, $verbose;
         my $mime = $msg->to_email_mime;
         $mime->as_string;

See Also