outlook Reply TimeStamp

  • Thread starter Thread starter Mr. X.
  • Start date Start date
M

Mr. X.

hello every one,
I want to know if there is a posibility to check the timestamp of the
"Reply at:"
With kind regards

Raul
 
You want the reply time from the original item? Not exposed in the Outlook
object model. You can use another API such as Redemption
(www.dimastr.com/redemption) or the PropertyAccessor in Outlook 2007 or 2010
to see if a reply was the last action, and the time of that action.

If PR_LAST_VERB_EXECUTED (0x10810003 or
"http://schemas.microsoft.com/mapi/proptag/0x10810003") is 102
(EXCHIVERB_REPLYTOSENDER) the last action was a reply. You can then check
PR_LAST_VERB_EXECUTION_TIME (0x10820040 or
"http://schemas.microsoft.com/mapi/proptag/0x10820040") to get the time/date
of that (in UTC).
 
Back
Top