use Mail::Outlook; my $outlook = new Mail::Outlook(); # create a message for sending my $message = $outlook->create(); $message->To('you@example.com'); $message->Cc('Them <them@example.com>'); $message->Bcc('Us <us@example.com>; anybody@example.com'); $message->Subject('Blah Blah Blah'); $message->Body('Yadda Yadda Yadda'); $message->Attach(@lots_of_files); $message->Attach(@more_files); # attachments are appended $message->Attach($one_file); # so multiple calls are allowed $message->save;
nah Email::Outlook::Message.pm - Read Outlook .msg files
http://www.fileformat.info/format/outlookmsg/# Outlook MSG file format COM stuctured storage OLE2 compound documents
So ole storage, ddg://perl OLE storage outlook .msg, ddg://site:perlmonks.org OLE storage outlook .msg
In reply to Re: Use perl to create outlook .msg file
by Anonymous Monk
in thread Use perl to create outlook .msg file
by aravinds
| For: | Use: | ||
| & | & | ||
| < | < | ||
| > | > | ||
| [ | [ | ||
| ] | ] |