in reply to Re^2: Save Sent mails from outlook to a drive in ".msg" format
in thread Save Sent mails from outlook to a drive in ".msg" format

What have you tried so far? Can you show the Perl script you're working with, that isn't doing that doing that for you?

You haven't given me anything to work with. I'm afraid I'm at a bit of a loss, w/o some Perl to work with.

Best wishes.

--Chris

¡λɐp ʇɑəɹ⅁ ɐ əʌɐɥ puɐ ʻꜱdləɥ ꜱᴉɥʇ ədoH

  • Comment on Re^3: Save Sent mails from outlook to a drive in ".msg" format

Replies are listed 'Best First'.
Re^4: Save Sent mails from outlook to a drive in ".msg" format
by programerv (Initiate) on Jun 03, 2014 at 12:39 UTC
    # 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');
    Infact i do not know how to proceed from here.