A Microsoft Outlook email forum. Outlook Banter

If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

Go Back   Home » Outlook Banter forum » Microsoft Outlook Email Newsgroups » Add-ins for Outlook
Site Map Home Register Authors List Search Today's Posts Mark Forums Read Web Partners

detect if a mail is read in a public folder



 
 
Thread Tools Search this Thread Display Modes
  #1  
Old November 15th 09, 11:13 AM posted to microsoft.public.outlook.program_addins
Gudmundur
external usenet poster
 
Posts: 6
Default detect if a mail is read in a public folder


Hi, I need to send alarms as emails to a public folder and I need to be
able to verify that the email has been read/opened after it has been
submitted to the public folder. There is a flag on a email message that
is called IsRead but that is user specific and will thus not help in
this case.

greatly appreciate any help rendered

Cheers
Gudmundur


--
Gudmundur
http://forums.slipstick.com

  #2  
Old November 15th 09, 05:25 PM posted to microsoft.public.outlook.program_addins
Sue Mosher [MVP][_4_]
external usenet poster
 
Posts: 552
Default detect if a mail is read in a public folder

Use a custom form and put code in the item's Item_Read and/or Item_Open
event handler to put information in some custom field to give you the status
report you need.
--
Sue Mosher, Outlook MVP
Author of Microsoft Outlook 2007 Programming:
Jumpstart for Power Users and Administrators
http://www.outlookcode.com/article.aspx?id=54


"Gudmundur" Gudmundur.41p3v3@invalid wrote in message
news:Gudmundur.41p3v3@invalid...

Hi, I need to send alarms as emails to a public folder and I need to be
able to verify that the email has been read/opened after it has been
submitted to the public folder. There is a flag on a email message that
is called IsRead but that is user specific and will thus not help in
this case.

greatly appreciate any help rendered

Cheers
Gudmundur


--
Gudmundur
http://forums.slipstick.com



  #3  
Old November 16th 09, 05:30 PM posted to microsoft.public.outlook.program_addins
Dmitry Streblechenko
external usenet poster
 
Posts: 2,116
Default detect if a mail is read in a public folder

Or you can turn off per-user read/unread state for the PF store.

--
Dmitry Streblechenko (MVP)
http://www.dimastr.com/
OutlookSpy - Outlook, CDO
and MAPI Developer Tool
-
"Sue Mosher [MVP]" wrote in message
...
Use a custom form and put code in the item's Item_Read and/or Item_Open
event handler to put information in some custom field to give you the
status report you need.
--
Sue Mosher, Outlook MVP
Author of Microsoft Outlook 2007 Programming:
Jumpstart for Power Users and Administrators
http://www.outlookcode.com/article.aspx?id=54


"Gudmundur" Gudmundur.41p3v3@invalid wrote in message
news:Gudmundur.41p3v3@invalid...

Hi, I need to send alarms as emails to a public folder and I need to be
able to verify that the email has been read/opened after it has been
submitted to the public folder. There is a flag on a email message that
is called IsRead but that is user specific and will thus not help in
this case.

greatly appreciate any help rendered

Cheers
Gudmundur


--
Gudmundur
http://forums.slipstick.com





  #4  
Old December 1st 09, 10:20 PM posted to microsoft.public.outlook.program_addins
Gudmundur
external usenet poster
 
Posts: 6
Default detect if a mail is read in a public folder


Gudmundur;97553 Wrote:
Hi, I need to send alarms as emails to a public folder and I need to be
able to verify that the email has been read/opened after it has been
submitted to the public folder. There is a flag on a email message that
is called IsRead but that is user specific and will thus not help in
this case.

greatly appreciate any help rendered

Cheers
Gudmundur


Hi and thanks for a prompt reply, I tried out your suggestion made a
custom form based on IPM.note but when I specified that
the public folder should use the form I got an error message. I can use
a custom form based on IPM.post ...but then the event handler
item_read() only kicks in when posting
and does nothing for emails opened in the public folder ....is there
anyway of making ipm.note custom form to work with public folder ? or if
not can a custom form assigned to a public
folder somehow target emails instead of posts ? item_read() targeting
emails instead of the posts in the public folder ..

I have tried disabling as well per user reads but that turns of user
reads for all items in the public folder, that is all items remain in
the unread state, no matter if they have been read or not

Really appreciate any help that can guide me in the right direction
here...

Cheers
Gudmundur


--
Gudmundur
http://forums.slipstick.com

  #5  
Old December 2nd 09, 12:02 AM posted to microsoft.public.outlook.program_addins
Sue Mosher [MVP][_4_]
external usenet poster
 
Posts: 552
Default detect if a mail is read in a public folder

Publish the form to the Organizational Forms library and use the custom form
to create the "alarms" (whatever that means).
--
Sue Mosher, Outlook MVP
Author of Microsoft Outlook 2007 Programming:
Jumpstart for Power Users and Administrators
http://www.outlookcode.com/article.aspx?id=54


"Gudmundur" Gudmundur.42jb7m@invalid wrote in message
news:Gudmundur.42jb7m@invalid...

Gudmundur;97553 Wrote:
Hi, I need to send alarms as emails to a public folder and I need to be
able to verify that the email has been read/opened after it has been
submitted to the public folder. There is a flag on a email message that
is called IsRead but that is user specific and will thus not help in
this case.

greatly appreciate any help rendered

Cheers
Gudmundur


Hi and thanks for a prompt reply, I tried out your suggestion made a
custom form based on IPM.note but when I specified that
the public folder should use the form I got an error message. I can use
a custom form based on IPM.post ...but then the event handler
item_read() only kicks in when posting
and does nothing for emails opened in the public folder ....is there
anyway of making ipm.note custom form to work with public folder ? or if
not can a custom form assigned to a public
folder somehow target emails instead of posts ? item_read() targeting
emails instead of the posts in the public folder ..

I have tried disabling as well per user reads but that turns of user
reads for all items in the public folder, that is all items remain in
the unread state, no matter if they have been read or not

Really appreciate any help that can guide me in the right direction
here...

Cheers
Gudmundur


--
Gudmundur
http://forums.slipstick.com



  #6  
Old December 7th 09, 03:35 PM posted to microsoft.public.outlook.program_addins
Gudmundur
external usenet poster
 
Posts: 6
Default detect if a mail is read in a public folder


Gudmundur;97553 Wrote:
Hi, I need to send alarms as emails to a public folder and I need to be
able to verify that the email has been read/opened after it has been
submitted to the public folder. There is a flag on a email message that
is called IsRead but that is user specific and will thus not help in
this case.

greatly appreciate any help rendered

Cheers
Gudmundur


sfsfsdfsadfsdf


--
Gudmundur
http://forums.slipstick.com

  #7  
Old December 7th 09, 04:04 PM posted to microsoft.public.outlook.program_addins
Sue Mosher [MVP][_4_]
external usenet poster
 
Posts: 552
Default detect if a mail is read in a public folder

Did you try what I suggested?

--
Sue Mosher, Outlook MVP
Author of Microsoft Outlook 2007 Programming:
Jumpstart for Power Users and Administrators
http://www.outlookcode.com/article.aspx?id=54


"Gudmundur" Gudmundur.42twgm@invalid wrote in message
news:Gudmundur.42twgm@invalid...

Gudmundur;97553 Wrote:
Hi, I need to send alarms as emails to a public folder and I need to be
able to verify that the email has been read/opened after it has been
submitted to the public folder. There is a flag on a email message that
is called IsRead but that is user specific and will thus not help in
this case.

greatly appreciate any help rendered

Cheers
Gudmundur


sfsfsdfsadfsdf


--
Gudmundur
http://forums.slipstick.com



  #8  
Old December 7th 09, 05:11 PM posted to microsoft.public.outlook.program_addins
Gudmundur
external usenet poster
 
Posts: 6
Default detect if a mail is read in a public folder


'Sue Mosher [MVP Wrote:
;104455']Did you try what I suggested?

--
Sue Mosher, Outlook MVP
Author of Microsoft Outlook 2007 Programming:
Jumpstart for Power Users and Administrators
http://www.outlookcode.com/article.aspx?id=54


"Gudmundur" Gudmundur.42twgm@invalid wrote in message
news:Gudmundur.42twgm@invalid...

Gudmundur;97553 Wrote:
Hi, I need to send alarms as emails to a public folder and I need to

be
able to verify that the email has been read/opened after it has

been
submitted to the public folder. There is a flag on a email message

that
is called IsRead but that is user specific and will thus not help

in
this case.

greatly appreciate any help rendered

Cheers
Gudmundur


sfsfsdfsadfsdf


--
Gudmundur
http://forums.slipstick.com


Hi Sue, yes I did try what you suggested, but would it not be very slow
and tedious method for the operator responsible for posting the email to
30 public folders if he has to access a custom form 30 times that is for
every public folder, instead of being able to use a distribution group
that would contain the 30 public folders and send one email to all 30
public folders...?

With the custom form I can post into one public folder at a time and
everyting works fine when I do so...but it would take to long time to do
so 30 times for each public folder .....or am I missing something from
the picture ?


--
Gudmundur
http://forums.slipstick.com

  #9  
Old December 7th 09, 09:31 PM posted to microsoft.public.outlook.program_addins
Sue Mosher [MVP][_4_]
external usenet poster
 
Posts: 552
Default detect if a mail is read in a public folder

Huh? I don't understand how that relates to the original objective of
verifying that an item in a folder has been read. Nothing about a custom
message form would prevent you from using a DL to send it to multiple public
folders.
--
Sue Mosher, Outlook MVP
Author of Microsoft Outlook 2007 Programming:
Jumpstart for Power Users and Administrators
http://www.outlookcode.com/article.aspx?id=54

"Gudmundur" Gudmundur.42u0uy@invalid wrote in message
news:Gudmundur.42u0uy@invalid...

Hi Sue, yes I did try what you suggested, but would it not be very slow
and tedious method for the operator responsible for posting the email to
30 public folders if he has to access a custom form 30 times that is for
every public folder, instead of being able to use a distribution group
that would contain the 30 public folders and send one email to all 30
public folders...?

With the custom form I can post into one public folder at a time and
everyting works fine when I do so...but it would take to long time to do
so 30 times for each public folder .....or am I missing something from
the picture ?



  #10  
Old December 8th 09, 02:49 PM posted to microsoft.public.outlook.program_addins
Gudmundur
external usenet poster
 
Posts: 6
Default detect if a mail is read in a public folder


'Sue Mosher [MVP Wrote:
;104600']Huh? I don't understand how that relates to the original
objective of
verifying that an item in a folder has been read. Nothing about a
custom
message form would prevent you from using a DL to send it to multiple
public
folders.
--
Sue Mosher, Outlook MVP
Author of Microsoft Outlook 2007 Programming:
Jumpstart for Power Users and Administrators
http://www.outlookcode.com/article.aspx?id=54

"Gudmundur" Gudmundur.42u0uy@invalid wrote in message
news:Gudmundur.42u0uy@invalid...

Hi Sue, yes I did try what you suggested, but would it not be very

slow
and tedious method for the operator responsible for posting the email

to
30 public folders if he has to access a custom form 30 times that is

for
every public folder, instead of being able to use a distribution

group
that would contain the 30 public folders and send one email to all

30
public folders...?

With the custom form I can post into one public folder at a time and
everyting works fine when I do so...but it would take to long time to

do
so 30 times for each public folder .....or am I missing something

from
the picture ?


Hi Sue, if i post to the Public Folder with the custom form, and then
open the item I posted then the event Sub item_open() triggers.
On ther other hand if I use a DL to send an email to
the same Public Folder with the custom form, and then open the item I
emailed then the event Sub item_open() does unfortunately not trigger.

That is the heart of the matter

Cheers Gudmundur


--
Gudmundur
http://forums.slipstick.com

 




Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Add-in to Read from Public Folder Chris McHenry Add-ins for Outlook 0 October 28th 09 03:59 AM
public folder contact read only wilecoyote Outlook - General Queries 0 January 17th 07 06:30 PM
How to read Item from Public Folder and process it DIRECTLY. gata Outlook - General Queries 4 July 7th 06 07:15 AM
Can't read text in Public Folder Calendar appointments Tim Munro Outlook - Calandaring 0 June 7th 06 09:41 PM
Read public folder via IMAP [email protected] Outlook - General Queries 1 April 24th 06 10:44 AM


All times are GMT +1. The time now is 09:14 AM.


Powered by vBulletin® Version 3.6.4
Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.Search Engine Friendly URLs by vBSEO 2.4.0
Copyright ©2004-2025 Outlook Banter.
The comments are property of their posters.