Skip to content

Instantly share code, notes, and snippets.

@talkingmoose
Created November 29, 2015 01:33
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save talkingmoose/1588e80bf6a4cd16b358 to your computer and use it in GitHub Desktop.
Save talkingmoose/1588e80bf6a4cd16b358 to your computer and use it in GitHub Desktop.
Add a category to an Outlook item with existing categories.
tell application "Microsoft Outlook"
set theMessages to selection
repeat with aMessage in theMessages
set theList to categories of aMessage
set end of theList to category "Team"
set category of aMessage to theList
end repeat
end tell
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment