Undocumented Function? How to know for an olMailItem if it has been "replied" or "forwarded"

  • Thread starter Thread starter 9online
  • Start date Start date
9

9online

Dear all
I would like to check from my Inbox all email that as been already replied
or forwarded
This status is indicated in Outlook appication with a special Incon
Purple Left Arrow for replied
Blue Right Arrow for forwarded.
How can I get this status of an olEmailItem, within a VB function?

Thanks for your help
 
The Outlook object model doesn't let you find that. You would need to use a
different API such as CDO 1.21 or Extended MAPI or Redemption
(www.dimastr.com/redemption). Neither CDO or Extended MAPI can be used from
..NET languages.

The property you would read would be PR_LAST_VERB_EXECUTED (0x10810003).

EXCHIVERB_REPLYTOSENDER = 102
EXCHIVERB_REPLYTOALL = 103
EXCHIVERB_FORWARD = 104
 
Back
Top