dyan has asked for the wisdom of the Perl Monks concerning the following question:
That of course only gives me the creation time of the e-mail, which is not what I want. I'm not too sure on how to get the time that the email was sent. As you can tell, I'm pretty new at this, so please let me know if I'm way off track. Your help is appreciated. Thanks.use strict; use Win32::OLE qw(in with); use Win32::OLE::Const 'Microsoft Outlook'; ... $namespace = ... $Folder1 = ... ... $Folder4 = ... ... foreach $item (in $Folder4->{Items}){ $date = $item->{CreationTime}->Date('ddd MMM dd, yyyy').' '.$item ->{C +reationTime}->Time('hh:mm:ss tt'); print $date . "\n"; }
EDIT: After looking up the appropriate documentation on MSDN, I found out I +should be using ReceivedTime. Well, that was simple.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Parsing Outlook email time sent?
by sg (Pilgrim) on Sep 29, 2007 at 09:32 UTC | |
|
Re: Parsing Outlook email time sent?
by barbie (Deacon) on Sep 30, 2007 at 21:16 UTC |