http://www.perlmonks.org?node_id=926876


in reply to Outlook email dates

A dig through the source of Mail::Outlook::Message shows that the MailItem attribute is called ReceivedTime which has further attributes of Date and Time

print $this_email->ReceivedTime()->Date() . ' ' $this_email->ReceivedT +ime()->Time(), "\n";

Replies are listed 'Best First'.
Re^2: Outlook email dates
by Anonymous Monk on Sep 20, 2011 at 09:38 UTC
    Thanks!