How do I use rules wizard to remove categories from incoming mail.

G

Guest

A number of people in our organization use Categories to sort their inbox.
When messages are forwarded or replied to, these categories are propogated.
If a message goes through multiple people, categories continue to be added to
messages.

Can I build a rule to remove all categories from incoming mail? How?
 
S

Sue Mosher [MVP-Outlook]

No, but you can handle this with a little VBA code:

Private Sub Application_ItemSend(ByVal Item As Object, Cancel As Boolean)
Item.Categories = ""
End Sub
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top