in reply to Re^3: Save Sent mails from outlook to a drive in ".msg" format
in thread Save Sent mails from outlook to a drive in ".msg" format
Infact i do not know how to proceed from here.# create the object use Mail::Outlook; my $outlook = new Mail::Outlook(); # start with a folder my $outlook = new Mail::Outlook('Sent Items'); # use the Win32::OLE::Const definitions use Mail::Outlook; use Win32::OLE::Const 'Microsoft Outlook'; my $outlook = new Mail::Outlook(olFolderSentMail); # get/set the current folder my $folder = $outlook->folder(); my $folder = $outlook->folder('Sent Items');
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^5: Save Sent mails from outlook to a drive in ".msg" format
by marto (Cardinal) on Jun 03, 2014 at 12:46 UTC |