Quantcast
Channel: I have an Outlook 2007 rule which copies certain outgoing messages to another folder -- how do I automatically mark these messages as "read"? - Super User
Viewing all articles
Browse latest Browse all 4

Answer by FoleyIsGood for I have an Outlook 2007 rule which copies certain outgoing messages to another folder -- how do I automatically mark these messages as "read"?

$
0
0

You'll need to tweak this to match your folder / mailbox names, but this will set newly added items (i.e. emails moved by your rule) as read:


Option Explicit
'##############################################
'### all code for the ThisOutlookSession module
'### Module level Declarations
'expose the items in the target folder to events
Dim WithEvents TargetFolderItems As Items

'###############################################
Private Sub Application_Startup()
'some startup code to set our "event-sensitive"
'items collection

Dim myMailbox As String, myFolder As String

'You need to set these
myMailbox = "Mailbox - My Name"
myFolder = "Archive Folder Name"

Dim ns As Outlook.NameSpace

Set ns = Application.GetNamespace("MAPI")
Set TargetFolderItems = ns.Folders(myMailbox).Folders(myFolder).Items

End Sub

'#################################################
'### this is the ItemAdd event code
Sub TargetFolderItems_ItemAdd(ByVal Item As Object)
'when a new item is added to our "Testing Folder"
'we can process it
Dim myEmail As MailItem
Set myEmail = Item
myEmail.UnRead = False
End Sub

'#################################################
Private Sub Application_Quit()

Dim ns As Outlook.NameSpace
Set TargetFolderItems = Nothing
Set ns = Nothing

End Sub

Viewing all articles
Browse latest Browse all 4

Trending Articles