Mailbox statistics

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi

Some managers in my company want a tool that describes mailbox statistics, being: howmany mails in inbox, howmany read, unread, average per day, ... All stuff that is reasonably easy to find using the GetDefaultFolder(olFolderInbox) folder object and browsing through the email propperties

There is one I'm not able to find, however. I need to know if a mail was acted upon (reply'ed or forwarded) and, if possible, when tha action took place to calculate average response times

I know that outlook knows that a mail was acted upon, because it changes the icon from the mail. What is the property to address it in VBA?

And is there another way of knowing when the reaction took place than just scimming through the sent items folder with the correct message thread

Thanks for a reply

Martin
 
These properties are not exposed in OOM. You will need Extended MAPI
(C++/Delphi), CDO 1.21 or Redemption to access PR_LAST_VERB_EXECUTED and
PR_LAST_VERB_EXECUTION_TIME properties.

Dmitry Streblechenko (MVP)
http://www.dimastr.com/
OutlookSpy - Outlook, CDO
and MAPI Developer Tool


Martin said:
Hi,

Some managers in my company want a tool that describes mailbox statistics,
being: howmany mails in inbox, howmany read, unread, average per day, ...
All stuff that is reasonably easy to find using the
GetDefaultFolder(olFolderInbox) folder object and browsing through the email
propperties.
There is one I'm not able to find, however. I need to know if a mail was
acted upon (reply'ed or forwarded) and, if possible, when tha action took
place to calculate average response times.
I know that outlook knows that a mail was acted upon, because it changes
the icon from the mail. What is the property to address it in VBA?
And is there another way of knowing when the reaction took place than just
scimming through the sent items folder with the correct message thread?
 
Back
Top