Remove Categories when Forwarding or Replying

  • Thread starter Thread starter Jim Cotter
  • Start date Start date
J

Jim Cotter

Hello,

Is there a way to have Outlook strip all category
information from a message before it is sent (or not
propagate categories to replies and forwarded messages)?

Thanks,
Jim
 
Sure. Put this code in the ThisOutlookSession module in Outlook VBA.

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

If you're not familiar with using VBA, start at http://www.slipstick.com/dev/vb.htm#tutorials.
--
Sue Mosher, Outlook MVP
Outlook and Exchange solutions at http://www.slipstick.com
Author of
Microsoft Outlook Programming: Jumpstart
for Administrators, Power Users, and Developers
 
Back
Top