Clear categories in Outlook 2003

Outlook 2007 automatically categorizes incoming mail.

Outlook 2003 does not do this by forcing the recipient to use sender categories.

Is there any way: Force Outlook 2003 deletes categories (can't do it using rules and alerts) by incoming email. OR Force both Outlook 2007 and Outlook 2003 to remove categories before submitting?

Thank,

Jeff

+1


source to share


1 answer


Try setting up a rule to run your script:

Sub RemoveCategories(MyMail As MailItem)
  Dim strID As String
  Dim objMail As Outlook.MailItem

  strID = MyMail.EntryID
  Set objMail = Application.Session.GetItemFromID(strID)
  objMail.Categories = ""
  objMail.Save

  Set objMail = Nothing
End Sub

      



This is based on this article .

+2


source







All Articles