Microsoft
Software
Hardware
Network
Question : Auto delete certain sent items - Outlook 2007
Hi guys,
How do you go about auto deleting sent items to a certain email address? I need to automatically delete anything sent to
[email protected]
.
I have looked at the Rules but I can't see an option to delete once you follow the 'action after message is sent' you can only move it as a copy to a folder.
Thanks
Steve
Answer : Auto delete certain sent items - Outlook 2007
Change this block of code
If LCase(olkRecipient.Address
) = "
[email protected]
" Then
Item.Delete
Exit For
End If
to
Select Case LCase(olkRecipient.Address
)
Case "
[email protected]
","ad
dress2@som
ewhere.com
"
Item.Delete
Exit For
End Select
Random Solutions
GLIBCXX_3.4.9' not found C++
Matching case in SQL
Public folder replication not working on Exchange 2007?
Access 2003 upgrade - user unable to launch parameter queries, or use Report preview button.
Open Visual Foxpro DBF file without FPT filed
Access VBA to test for login or logout status ( If then Next)
Deleting blank rows
Build SQL statement from a form
Create a graph in a Word doc from Access based on access table data
How to change color in datarow in gridview in Web Part??