Some way to capture who marks an email as read

  • Thread starter Thread starter TWlrZXltb24tc2NvdA
  • Start date Start date
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
 
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
A Outlook 365 Can I set up a Microsoft 365 account to capture emails sent and received from a comcast.net account? Using Outlook 7
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
G Question marks in messages Using Outlook 2
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
W frustrating trying to change email password Using Outlook 5
R File not found when sending email with attached pdf file Using Outlook 2
U Trouble sending large files to a email group but can to the individuals in that group Using Outlook 8
P Xfinity/Comcast email service stopping sometime in 2025 - warning Using Outlook 5
O Two identical email accounts in Offline Global Address List Using Outlook 2
H Spam email in Gmail not visible in Outlook Using Outlook 3
J Renegade spam URL line displayed in old local Outlook 365 email title Using Outlook 3
L Hide Selected Email Address from Address Book Using Outlook 5
Y QQ on Scheduled Delivery of an Email Using Outlook 0
T Replace Text in Email Subject Outlook VBA and Custom Forms 3
Rupert Dragwater Cannot reestablish gmail (email address) account in Outlook 365 Using Outlook 11
M Outlook 365 adding standard message in body of template email Outlook VBA and Custom Forms 3
E Create Rule to Forward Email if Subject Begins With Using Outlook 2
V iCloud For Windows v15.x - Missing Email Features ? Using Outlook 4
M Thunderbird email client - I wonder Using Outlook 1
D Outlook Desktop App Email Software Using Outlook 0
P Email and calendar entry text now shifts right about 3 tabs worth of space Using Outlook 1
J Outlook macro to run before email is being send Outlook VBA and Custom Forms 3
T Outlook 2010 Creating a email 'Group' in OL 2010 Using Outlook 2
D Send email from Outlook Alias using Mac? Using Outlook 0
T How to set Default FONT for Email composing ? Using Outlook 0
H Finding text in open email Outlook VBA and Custom Forms 12
T Why do Outlook Desktop 2021 tasks from my wife's email show up in my task pane? Using Outlook 2
A Opening a link from an email automatically Outlook VBA and Custom Forms 0
D Outlook 2021 New email reminder Using Outlook.com accounts in Outlook 1
Rupert Dragwater How do I remove an email ending with @gmail.com Using Outlook 4
M A plug in (or method) to keep email message formatting after it expires Using Outlook 1
L VBA to Triage Incoming Email Outlook VBA and Custom Forms 0
R Legacy Outlook on Mac Email Cache Using Outlook 0

Similar threads

Back
Top