bpaen has asked for the wisdom of the Perl Monks concerning the following question:
I have no problem to locate E-mails based on the Subject and Sender Name etc. However, I have a trouble to interpret the "ReceivedTime" field which is a part of search criteria. I would really appreciate if someone can help me on this.
Here is the code I used (thanks for the examples provided in this section!)foreach my $item (in $Inbox->{Items}) print "=========================================================== \n" +; print "subject : ", $item->{Subject}, "\n", print "Sent by : ", $item->{SenderName}, "\n"; print "Received at: ", $item->{ReceivedTime}, " \n";
The result for "ReceivedTime" is:
Received at: Win32::OLE::Variant=SCALAR(0x1cb00cc)
20030120 : Edit by Corion: Added formatting
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Search Outlook E-mail by Subject and Sent (or Received) Time by today's date
by zakb (Pilgrim) on Jan 20, 2003 at 09:25 UTC | |
by Anonymous Monk on Jan 21, 2003 at 17:05 UTC |