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

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
 
K

Ken Slovak - [MVP - Outlook]

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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top