Skip to main content
How-To Guides Last updated: 6 March 2026

How to Use Categories to Colour-Code Emails

Create colour-coded category labels and apply them to emails for visual organisation and filtering.

Create named, colour-coded categories and apply them to emails for visual organisation in Outlook.

List Existing Categories

“Show me my email categories”

tool: manage-category
params:
  action: "list"

Create a New Category

“Create a red ‘Urgent’ category”

tool: manage-category
params:
  action: "create"
  displayName: "Urgent"
  color: "preset0"

Available Colours

PresetColour
preset0Red
preset1Orange
preset2Brown
preset3Yellow
preset4Green
preset5Teal
preset6Olive
preset7Blue
preset8Purple
preset9Cranberry
preset10Steel
preset11Dark Steel
preset12Grey
preset13Dark Grey
preset14Black
preset15preset24Dark variants of the above

Apply a Category to an Email

“Mark that email as Urgent”

tool: apply-category
params:
  messageId: "AAMkAGR..."
  categories: ["Urgent"]

Apply Multiple Categories

tool: apply-category
params:
  messageId: "AAMkAGR..."
  categories: ["Urgent", "Project Alpha"]
  action: "add"
ActionBehaviour
setReplace all categories with these (default)
addAdd these categories, keep existing ones
removeRemove only these categories

Apply Categories in Bulk

“Tag all these emails as Project Alpha”

tool: apply-category
params:
  messageIds: ["AAMkAGR1...", "AAMkAGR2...", "AAMkAGR3..."]
  categories: ["Project Alpha"]
  action: "add"

Remove a Category from an Email

tool: apply-category
params:
  messageId: "AAMkAGR..."
  categories: ["Urgent"]
  action: "remove"

Delete a Category

tool: manage-category
params:
  action: "delete"
  id: "category-id..."

Tips

  • Categories sync across Outlook desktop, web, and mobile
  • Use action: "add" to preserve existing categories when adding new ones
  • Create a consistent set of categories (e.g. by project, priority, or team) for long-term organisation
Was this helpful?

Related Articles