How2 create Rule/VBA to auto mark all unread msg in 1folder as rea

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

Guest

example i have a folder called "later review".

I also set rule that if all msg from "mary" will be moved in "later review" and I want all new (unread) msg in this folder to be marked as READ.

How i do this. I try will rules but no criteria for this, only "perform a _custom action_" or "start _application_" that may help me, but dont know how.

or i can creat simple VBA to do this. If yes , pls pls send me
the VBA program for me as i only know little how to programming it.

HUGE Thanks in advance. Friendssssssssss. Pallllllllll. Guys.........

Wish to hear from u soon.
 
You could use an ItemAdd event handler for the Items collection of your
target folder and run that from within the Outlook VBA project, the code
would mark every item added to that folder as read by setting Item.UnRead =
False (which often has to be done twice for it to stick). The code at
http://www.outlookcode.com/d/code/zaphtml.htm#cw could easily be modified to
work with a different folder and do what you want instead of clearing HTML
from incoming messages.




CodeSPY said:
example i have a folder called "later review".

I also set rule that if all msg from "mary" will be moved in "later
review" and I want all new (unread) msg in this folder to be marked as READ.
How i do this. I try will rules but no criteria for this, only "perform
a _custom action_" or "start _application_" that may help me, but dont know
how.
 
Back
Top