C
CuriousGeorge
I understand OL2007 automagically strips categories from incoming and
outgoing emails, but saves the categories of sent emails locally (on the
user's computer) so they can be searched, etc. I want to do the same thing in
OL2003.
I've read 'how' to do it, but I don't understand how to implement it. Can
someone please tell me if 1) it's correct, and 2) how to do it?
Here's what I found (from link
http://www.slipstick.com/emo/2001/up011219.htm):
Code to remove categories on Outlook messages
If you used Kaitlin's earlier EMO tip on using categories to manage your
messages, you might get an occasional message from your email correspondents
wondering why they got a message with the category a-family or z-work. When
you reply to or forward a message, Outlook copies the categories from the
original message to the reply or forward. You can put this simple code in the
ThisOutlookSession module to strip categories from all outgoing messages:
Private Sub Application_ItemSend(ByVal Item As Object, _
Cancel As Boolean)
Item.Categories = ""
End Sub
This and Kaitlin's tip above are just a few examples of what you can to with
Visual Basic for Applications in Outlook to automate your mail and other
chores. If you want to learn more about Outlook VBA, start at
http://www.slipstick.com/dev/vb.htm.
I'm not familiar with VBA. I have already tried modifying OL forms, and I've
had no success. Likewise with this.
Thank you in advance for your help!
outgoing emails, but saves the categories of sent emails locally (on the
user's computer) so they can be searched, etc. I want to do the same thing in
OL2003.
I've read 'how' to do it, but I don't understand how to implement it. Can
someone please tell me if 1) it's correct, and 2) how to do it?
Here's what I found (from link
http://www.slipstick.com/emo/2001/up011219.htm):
Code to remove categories on Outlook messages
If you used Kaitlin's earlier EMO tip on using categories to manage your
messages, you might get an occasional message from your email correspondents
wondering why they got a message with the category a-family or z-work. When
you reply to or forward a message, Outlook copies the categories from the
original message to the reply or forward. You can put this simple code in the
ThisOutlookSession module to strip categories from all outgoing messages:
Private Sub Application_ItemSend(ByVal Item As Object, _
Cancel As Boolean)
Item.Categories = ""
End Sub
This and Kaitlin's tip above are just a few examples of what you can to with
Visual Basic for Applications in Outlook to automate your mail and other
chores. If you want to learn more about Outlook VBA, start at
http://www.slipstick.com/dev/vb.htm.
I'm not familiar with VBA. I have already tried modifying OL forms, and I've
had no success. Likewise with this.
Thank you in advance for your help!