Macro to categorise email

J

JamesG

I would like to have a shortcut to categorise each email to a set category

Not to sure how to start any help would be gratefully received
 
M

Michael Bauer

Hi James,

you could add a menubar with your own button. A little macro could than
add a set of categories to the selected Item, e.g.:

With Application.ActiveExplorer.Selection(1)
' This would *add* your set:
.Categories=.Categories & ";MyStandardSet"

' *OR* this line, it would *replace* all existing categories through
your set
.Categories="MyStandardSet"

.Save
End With
 
Top