Some way to capture who marks an email as read

Status
Not open for further replies.
T

TWlrZXltb24tc2NvdA

I I run a service desk and we have a large number of mailboxes. Generally the

guys work along the lines - if a mail is unread it is to be actioned - if

it's read someone is doing it. I have an issue where there is a small number

of peope who mark emails as read but do nothing with them. What I'd like to

be able to do is get some kind of vb that i can use to keep track of who is

marking what as read. I can't use read recpiepts as the mails come from a

large number of internal and exteral sources. I'm pretty comforable with vb

in excel but know little about outlook. If someone could give me some ideas /

pointers on how I could do this / is it possible or even a little code to

start me off I could probably go from there.

If required, which I'm guessing it probably would be, I could have each of

the guys import any code and save it as a VBA project in thier own outlook

sessions.

Thanks in advance
 
K

Ken Slovak - [MVP - Outlook]

Distributing a VBA macro isn't really an optimal way to deploy code, a COM

addin is much better. See http://www.outlookcode.com/article.aspx?id=28 for

an explanation.

The PR_LAST_MODIFIER_NAME (0x3FFA001E) property isn't exposed in the Outlook

object model at all. For Outlook 2007 you can get the mail item's

PropertyAccessor object and use the DASL property tag (a string tag, not a

URL): "http://schemas.microsoft.com/mapi/proptag/0x3FFA001E" to get who last

modified an item. That doesn't tell you who marked it as read, unless that

was the last modification done on the item. Who marked something as read is

not stored as a value at all.

For versions of Outlook earlier than 2007 you would have to use a lower

level API to access that property, such as CDO 1.21 or Redemption

(www.dimastr.com/redemption).

For general information on programming Outlook look at www.outlookcode.com

"Mikeymon-scot" <Mikeymon-scot> wrote in message

news:3FD9DDB0-1535-4AB2-A2D7-86EC54D10D32@microsoft.com...
> I I run a service desk and we have a large number of mailboxes. Generally
> the
> guys work along the lines - if a mail is unread it is to be actioned - if
> it's read someone is doing it. I have an issue where there is a small
> number
> of peope who mark emails as read but do nothing with them. What I'd like
> to
> be able to do is get some kind of vb that i can use to keep track of who
> is
> marking what as read. I can't use read recpiepts as the mails come from a
> large number of internal and exteral sources. I'm pretty comforable with
> vb
> in excel but know little about outlook. If someone could give me some
> ideas /
> pointers on how I could do this / is it possible or even a little code to
> start me off I could probably go from there.

> If required, which I'm guessing it probably would be, I could have each of
> the guys import any code and save it as a VBA project in thier own outlook
> sessions.

> Thanks in advance
 
Status
Not open for further replies.
Similar threads
Thread starter Title Forum Replies Date
L Capture email addresses and create a comma separated list Outlook VBA and Custom Forms 5
R Capture Sender's Display name and Address Outlook VBA and Custom Forms 3
M Using field names to capture a data element Using Outlook 0
I Capture incoming emails Outlook VBA and Custom Forms 1
A Capture network traffic in IE to file Outlook VBA and Custom Forms 5
JorgeDario How to capture and save the text, when responding a MailItem? Outlook VBA and Custom Forms 3
G Capture "forward event" ? Outlook VBA and Custom Forms 11
J VBA Form in Outlook to capture data and complile a mail Outlook VBA and Custom Forms 2
A how to capture events for next item Outlook VBA and Custom Forms 10
B Capture Inbound E-mail Subject with VBA Outlook VBA and Custom Forms 4
R How to capture a Mailitem Event Outlook VBA and Custom Forms 3
A how to capture outlook 2007 events Outlook VBA and Custom Forms 4
C Event Capture - Item Context Menu (Delete). Can you hook it? Outlook VBA and Custom Forms 1
I 'quote marks' around email name Using Outlook 1
N How to disable shortcuts for Pilcrow in Outlook (Show or hide paragraph marks) Using Outlook 0
R Reply marks read message as unread Using Outlook 1
T Outlook 2013 either fails to mark messages as read or marks them as read, then un-marks them. Using Outlook 1
JR Ryan Outlook marks all as "Read" issue Exchange Server Administration 2
M Ye Olde 'Single Quote Marks' Issue Using Outlook 3
B Outlook 2019 Custom Email form - Edit default email form Outlook VBA and Custom Forms 5
F Add a category before "Send an Email When You Add an Appointment to Your Calendar" Outlook VBA and Custom Forms 0
T Problem when requesting to view an email in a browser Using Outlook 0
J Outlook 365 Forward Email Subject to my inbox when new email arrive in shared inbox Using Outlook 0
HarvMan Archive Email Manually Using Outlook 1
L Fetch, edit and forward an email with VBA outlook Outlook VBA and Custom Forms 2
S New Email "From" box stopped working Using Outlook 0
Rupert Dragwater Duplicate email in Folder Using Outlook 7
M "Attachment Detacher for Outlook" add in, does it update the server copy of the email? Using Outlook 1
W Outlook 365 I am getting the "Either there is no default mail client" error when I try to send an email on excel Office 365 Using Outlook 1
MattC Changing the font of an email with VBA Outlook VBA and Custom Forms 0
L Specific Incoming Email Address Immediately Deleted Using Outlook 2
Witzker Outlook 2019 Macro to send an Email Template from User Defined Contact Form Outlook VBA and Custom Forms 0
Witzker Outlook 2019 Edit contact from email does not open the user defined contactform Using Outlook 3
V Macro to mark email with a Category Outlook VBA and Custom Forms 4
R Roadrunner Email Settings | Contact Roadrunner Customer Support Outlook VBA and Custom Forms 1
D Gmail mail is being delivered to a different email inbox in Outlook App 2021 Using Outlook 2
Albert McCann Outlook 2021 Outlook Display of HTML Email from two senders is glitchy Using Outlook 0
A How Do I Setup My Optonline.Net Email Account? Outlook VBA and Custom Forms 1
H Preventing the 'email address fetch from Exchange' crashing email reading code Exchange Server Administration 0
D multiple email accounts - why do I have to choose the "from" account address?? Using Outlook 2
Wotme create email only data file Using Outlook 1
F Outlook 2016 Email with attachments not being received Using Outlook 3
J Outlook 2019 Regex email addresses from body Outlook VBA and Custom Forms 6
D Prompt to prefix subject line whenever sending an email Outlook VBA and Custom Forms 3
J Quick steps delete original email and move reply/sent email to folder Using Outlook 2
C Wishlist Extract or scan new email addresses from out of office replies. Leads from OOO replies Using Outlook 1
T External email warning banner Outlook VBA and Custom Forms 0
A Links in email getting error message about group policy Using Outlook 4
richardwing Auto forward email that is moves into a specific outlook folder Outlook VBA and Custom Forms 5
J Recommendations for Outlook Duplicate Email Remover Using Outlook 6

Similar threads

Top