• Outlook User
  • New Outlook app
  • Outlook.com
  • Outlook Mac
  • Outlook & iCloud
  • Developer
  • Microsoft 365 Admin
    • Common Problems
    • Microsoft 365
    • Outlook BCM
    • Utilities & Addins

Sending Categories on Email Messages

Slipstick Systems

› Outlook › Email › Sending Categories on Email Messages

Last reviewed on June 24, 2020     35 Comments

Applies to: Outlook (classic), Outlook 2007, Outlook 2010

To avoid releasing potentially private information on outgoing email messages, categories are not sent with email in Outlook when you use Exchange server mailboxes. When you use categories with internal codes or potentially embarrassing keywords, the recipient will not see them.

This does not apply to POP3 or IMAP accounts. The Category is removed by Exchange Server's transport rules, not Outlook, when the message is sent. A rule in Outlook 2007 and 2010 removes categories as messages are downloaded; Outlook 2013 and up does not have this rule, users will need to create the rule to remove categories.

If you need to send categories on outgoing email you can use the SendPersonalCategories registry entry.

Warning: when making this change, the categories will be included on the sent message and the recipient will be able to see the category (unless the recipient uses a rule to remove categories from messages they receive).

Create the key or path if it does not exist. This key should take effect without restarting Outlook.
 

User keys

Outlook 2016

HKEY_CURRENT_USER\Software\Microsoft\Office\16.0\Outlook\Preferences
DWORD: SendPersonalCategories
Value Data: 1 to keep categories on sent mail, 0 to not include categories

Outlook 2013

HKEY_CURRENT_USER\Software\Microsoft\Office\15.0\Outlook\Preferences
DWORD: SendPersonalCategories
Value Data: 1 to keep categories on sent mail, 0 to not include categories

Outlook 2010

HKEY_CURRENT_USER\Software\Microsoft\Office\14.0\Outlook\Preferences
DWORD: SendPersonalCategories
Value Data: 1 to keep categories on sent mail, 0 to not include categories

Outlook 2007

HKEY_CURRENT_USER\Software\Microsoft\Office\12.0\Outlook\Preferences
DWORD: SendPersonalCategories
Value Data: 1 to keep categories on sent mail, 0 to not include categories

If you setting the SendPersonalCategories value, users can still delete the categories as messages arrive by using a rule.

Do it for me

If you don't want to edit the registry yourself, you can download and run a registry file to make the changes. This reg file also sets AcceptCategories value.

Outlook 2016Outlook 2013Outlook 2010
Outlook 2007

 

Policy keys

Policy keys are generally used by administrators, usually in a GPO. In the past, home users could use policy keys too, however many policy keys won't work in the consumer versions of Outlook 2013 and Outlook 2016.
Outlook 2016

HKEY_CURRENT_USER\Software\Policies\Microsoft\Office\16.0\Outlook\Preferences
DWORD: SendPersonalCategories
Value Data: 1 to keep categories on sent mail, 0 to not include categories

Outlook 2013

HKEY_CURRENT_USER\Software\Policies\Microsoft\Office\15.0\Outlook\Preferences
DWORD: SendPersonalCategories
Value Data: 1 to keep categories on sent mail, 0 to not include categories

Outlook 2010

HKEY_CURRENT_USER\Software\Policies\Microsoft\Office\14.0\Outlook\Preferences
DWORD: SendPersonalCategories
Value Data: 1 to keep categories on sent mail, 0 to not include categories

Outlook 2007

HKEY_CURRENT_USER\Software\Policies\Microsoft\Office\12.0\Outlook\Preferences
DWORD: SendPersonalCategories
Value Data: 1 to keep categories on sent mail, 0 to not include categories

If you setting the SendPersonalCategories value, users can still delete the categories as messages arrive by using a rule.

Do it for me

If you don't want to edit the registry yourself, you can download and run a registry file to make the changes. This reg file also sets AcceptCategories value.

Outlook 2016Outlook 2013Outlook 2010
Outlook 2007

Default Rule to Remove Categories

Outlook 2007 and up have a default rule that removes categories from messages as they arrive. Delete the rule or disable it if you want to keep the categories.

Outlook's default rule to remove categories

Remove Categories using a Macro

If categories are being sent, you can use a macro to remove the categories as the message is sent. Place the macro into ThisOutlookSession.

Private Sub Application_ItemSend(ByVal Item As Object, Cancel As Boolean)
Item.Categories = ""
Item.Save
End Sub

Exchange rule to remove categories

In Exchange 2007 and up, categories are removed from messages. To disable it, the administrator can use this cmdlet to change the transport setting.

Set-transportconfig -clearcategories $false

Other methods

If you need to include the category on a one time basis, drag the item to the hard drive, zip it and email the zip file. The recipient will drag the item to a folder in their Outlook and if using Outlook 2007, can add the categories to their master list by using the Upgrade to color categories option in the root folder properties.

Add Categories to Master list

In Outlook 2007 or 2010, to add a category that is not in your master list, to your master list, select it (so its highlighted) and click the New button.

Not in master list

Outlook will assign the next unused color - change the color and set a shortcut key, if desired, then click Save.

Adding Categories when Composing Email

The Categories button is not available when you are composing new messages. When you need to assign categories, you need to add the category to the message either in the Sent folder or in the Outbox.

To add the category before hitting Send, you can use VBA to open the Categories dialog. Add the following code to the VB Editor and then add a button to the QAT, Ribbon, or Toolbar of a message form. Click the button to open the Category dialog.

'by Michael Bauer
'//www.vboffice.net/en/developers/assign-email-categories-before-sending
Public Sub ShowCategoriesDialog()
  Dim Mail As Object
  Set Mail = Application.ActiveInspector.CurrentItem
  Mail.ShowCategoriesDialog
End Sub

More Information

Outlook Categories (Slipstick)
More Category VBA Code Samples by Michael Bauer:
E-Mail: Categorizer for outgoing e-mails
E-Mail: Categorize and move

Sending Categories on Email Messages was last modified: June 24th, 2020 by Diane Poremsky
Post Views: 89

Related Posts:

  • Outlook Categories and Color Categories
  • Archiving by Received Date in Outlook
  • Set an End Date on Recurring Appointments
  • Show Contact Linking fields in Outlook

About Diane Poremsky

A Microsoft Outlook Most Valuable Professional (MVP) since 1999, Diane is the author of several books, including Outlook 2013 Absolute Beginners Book. She also created video training CDs and online training classes for Microsoft Outlook. You can find her helping people online in Outlook Forums as well as in the Microsoft Answers and TechNet forums.

Comments

  1. Karla K says

    October 4, 2016 at 10:50 am

    We have Office 365 with Outlook 2016. The registry settings fixed it for us, but the key for Outlook 2016 is: [HKEY_CURRENT_USER\Software\Policies\Microsoft\office\16.0\outlook\preferences]
    Values are (same as 2013):
    "AcceptCategories"=dword:00000001
    "SendPersonalCategories"=dword:00000001

    Reply
  2. Brad Smith (@bradsmithsc) says

    October 15, 2015 at 9:47 am

    Hey Diane,

    Added this into group policy and noticed something. For Outlook 2013, the reg file has two fields but the page instructions are missing the AcceptCategories dword.

    Page instructions
    HKEY_CURRENT_USER\Software\Policies\Microsoft\Office\15.0\Outlook\Preferences
    DWORD: SendPersonalCategories
    Value Data: 1 to keep categories on sent mail, 0 to not include categories

    Outlook 2013 reg file
    [HKEY_CURRENT_USER\Software\Policies\Microsoft\office\15.0\outlook\preferences]
    "AcceptCategories"=dword:00000001
    "SendPersonalCategories"=dword:00000001

    Reply
  3. G says

    July 30, 2015 at 12:19 am

    Copied and pasted and there are no rules in 2013 outlook that strip categories. At least not when setup as exchange.

    Reply
  4. G says

    July 22, 2015 at 2:48 pm

    Somehow I got one computer to work perfectly fine but the rest I cannot get to work and here are the steps I've taken:

    Added these regedits:

    [HKEY_CURRENT_USER\Software\Policies\Microsoft\office\15.0\outlook\preferences]
    "AcceptCategories"=dword:00000001
    "SendPersonalCategories"=dword:00000001

    Also went into the powershell msonline and changed the transportconfig clearcategories to false.

    What else could be making outlook strip categories from meeting invites before sending them?

    In OWA, I can send categories in my invites perfectly between all users so this is definitely 100% an outlook issue.

    Reply
    • Diane Poremsky says

      July 29, 2015 at 9:39 pm

      Are their any rules that are removing categories? They are usually set on the recipients end though.

      Did you export the reg keys from the working computer and run it on the others? This will eliminate spelling errors.

      Reply
  5. Cam Robinson says

    June 16, 2014 at 5:35 pm

    I am using the 64 bit version of office - I am not sure if that makes a difference.

    Reply
    • Diane Poremsky says

      June 16, 2014 at 11:25 pm

      No, the bitness wouldn't affect this.

      Reply
  6. Cam Robinson says

    June 16, 2014 at 5:33 pm

    Yes, I restarted Outlook. I am using Office 365 which I believe is the latest version of Outlook. I did it twice. First manually and then with the reg files.

    Reply
    • Diane Poremsky says

      June 16, 2014 at 11:25 pm

      Offhand, I don't know why its not working for you. It should (and does here). Sorry.

      Reply
  7. Cameron Robinson says

    June 13, 2014 at 2:27 pm

    I cannot seem to get this to work for Outlook in Office 365 using the Office 365 Email server. HKEY_CURRENT_USER\Software\Policies\Microsoft\Office\15.0\Outlook\Preferences does not exist. Only HKEY_CURRENT_USER\Software\Policies\Microsoft\Office\15.0\Outlook\Security

    Reply
    • Diane Poremsky says

      June 13, 2014 at 3:25 pm

      if a key doesn't exist, you need to create it. right click on the Outlook key and choose New>

      Reply
      • Cameron Robinson says

        June 13, 2014 at 3:35 pm

        I created the key but it had not affect.

      • Diane Poremsky says

        June 15, 2014 at 12:17 am

        Did you restart Outlook? What version of Outlook do you use? Did you type the key in or use the reg files I included?

  8. Alex K says

    March 7, 2014 at 2:37 pm

    Having a rule to strip categories on incoming messages does not protect from information leak :(

    And judging from what the page you linked says, the leak is actually "by design". "Be very careful about categorizing your outgoing messages — your recipients might be able to see your categories". This is unfortunate.

    Diane, thank you so much for getting to the bottom of it! At least now it is clear that Outlook is not stripping categories which as assigned before a message is sent, unless sender is using Exchange.

    Reply
    • Diane Poremsky says

      March 7, 2014 at 4:54 pm

      No, it doesn't prevent PII leakage. The mvps discussed it this morning and had some of the same confusion we had last night. I don't know if some of the information was lost when the site was moved into the wordpress but I'll make it more clean since more people will notice this problem since the rule is no longer added by default - that hid the problem from many users.

      Reply
  9. Alex K says

    March 6, 2014 at 12:18 pm

    Hi Diane,

    According to the last reply from a Microsoft employee, the fact that recipient sees categories is expected. As you say in this article, this creates a private data leak risk. Users have an expectation that the categories they assign are seen only by them. Your article (and other similar posts) confirm it.

    What are your thoughts on this?

    https://social.technet.microsoft.com/Forums/office/en-US/70d611b8-7cd8-415c-a6ab-9be0a2216035/

    Thank you!

    Reply
    • Diane Poremsky says

      March 7, 2014 at 12:22 am

      I haven't had a chance to test it yet - I do have the key set and can send categories. Make sure you check for the key, both in the regular location and also in HKEY_CURRENT_USER\Software\Policies\Microsoft\office\15.0\outlook\preferences - I recommend deleting it, rather than changing it to 0.

      Reply
      • Diane Poremsky says

        March 7, 2014 at 12:44 am

        download and run this reg file - https://www.slipstick.com/doit/delete-sendcategory2013.reg - it will delete the keys if they are in your registry. Restart outlook and see if you are still sending the category.

        ETA: I testedi t here and I'm not sending categories unless the key is set.

    • Diane Poremsky says

      March 7, 2014 at 8:11 am

      Actually, after sleeping on it... I think the bug is that Outlook 2013 doesn't create the 'delete categories' rule for incoming mail, which it does in 2003, 2007 and 2010. This removes the categories. Exchange server also removes the categories - at the transport level - but Outlook doesn't have the capability to remove categories from mail as its being sent and leave it on the message. Without the rule (and to insure recipients can't see the category) you need to use an addin or a macro to categorize sent messages.

      Reply
    • Diane Poremsky says

      March 7, 2014 at 10:59 am

      One more comment, I promise - see categories on this page for a note about it. https://office.microsoft.com/en-us/outlook-help/best-practices-for-outlook-2010-HA102459562.aspx#_Toc283818128

      Reply
  10. Alex K says

    February 27, 2014 at 9:35 pm

    First line of the About window:
    Microsoft Outlook 2013 (15.0.4551.1511) MSO (15.0.4551.1508) 64-bit.

    I really appreciate you looking into this, Diane.

    Reply
    • Diane Poremsky says

      February 27, 2014 at 9:43 pm

      Thanks. That is the last pre-SP1 build. I'm assuming you are using a subscription version so it won't be updated for about 2 weeks (assuming i can repro the bug in that build and not in SP1.)

      Reply
  11. Alex K says

    February 25, 2014 at 11:49 am

    Hi Diane,

    I see Outlook 2013 sending categories to the recipient even when SendPersonalCategories is not set. Users are concerned about data leak. More details about here:
    https://social.technet.microsoft.com/Forums/office/en-US/70d611b8-7cd8-415c-a6ab-9be0a2216035/outlook-2013-categories-on-sent-messages?forum=outlook

    Do you have any ideas why this is happening and how to fix it?

    Thank you!

    Reply
    • Diane Poremsky says

      February 27, 2014 at 8:58 pm

      I'll have to look into it. it *should* work and if it doesn't, then it's a bug.

      Reply
      • Diane Poremsky says

        February 27, 2014 at 9:00 pm

        BTW, what is your build number? I'll check in both older builds and SP1. The moderator in that forum post is probably using SP1.

  12. Ian Slater says

    October 14, 2013 at 7:13 am

    thanks, Diane.

    Reply
  13. Ian Slater says

    October 14, 2013 at 2:36 am

    When the mail is answered will the categories still exist in my inbox? Or are they dependent on the recipients set up?

    Reply
    • Diane Poremsky says

      October 14, 2013 at 5:37 am

      it's dependent on the recipients set up. however, if you use outlook 2010/2013 with conversations enabled, you should see the category of your original message and can add it to the reply.

      Reply
  14. jacopo3001 says

    August 21, 2013 at 9:20 am

    I am in an Exchange environment, configured by IT.
    When I send emails, my recipients get to see my categories!

    How can I avoid this? I don't want my colleague to see my way of organizing emails

    Reply
    • Diane Poremsky says

      September 21, 2013 at 9:06 pm

      Check the registry at HKEY_CURRENT_USER\Software\Policies\Microsoft\Office\xx.0\Outlook\Preferences (xx = your version of Outlook) for a key named SendPersonalCategories. It should either not exist or be set to 0. If it exists and is set to 1, speak to your Exchange admin and ask them to change it.

      Reply
  15. Rick Medford (@rickmedford) says

    May 21, 2013 at 7:06 am

    Bingo! That did the trick. Thanks for you help.

    Reply
  16. Rick Medford (@rickmedford) says

    May 21, 2013 at 6:07 am

    I'll see if the Exchange server is the problem and report back. Thanks.

    Reply
  17. Rick Medford (@rickmedford) says

    May 20, 2013 at 1:55 am

    Any idea how to stop Outlook 2013 from stripping the categories on outgoing mail?

    Reply
    • Diane Poremsky says

      May 20, 2013 at 4:45 am

      Did you try the key? It should work on 2013 too. Okay, so it looks like the key does not work. I'll check on it because it is the only way to keep categories, short of sending messages in an attached zip file.

      Reply
    • Diane Poremsky says

      May 20, 2013 at 7:10 am

      Are you using Exchange server? The server may be stripping them - once I remembered the default is to strip categories, I ran the cmdlet to keep categories and the key works in 2013. If neither the sending nor receiving system in Exchange, categories *should* stick with that key set.

      Set-transportconfig -clearcategories $false

      Reply

Leave a Reply Cancel reply

Your email address will not be published. Required fields are marked *

Visit Slipstick Forums.
What's New at Slipstick.com

Latest EMO: Vol. 31 Issue 7

Subscribe to Exchange Messaging Outlook






Support Services

Do you need help setting up Outlook, moving your email to a new computer, migrating or configuring Office 365, or just need some one-on-one assistance?

Our Sponsors

CompanionLink
ReliefJet
  • Popular
  • Latest
  • Week Month All
  • Use Classic Outlook, not New Outlook
  • How to Remove the Primary Account from Outlook
  • Reset the New Outlook Profile
  • Disable "Always ask before opening" Dialog
  • This operation has been cancelled due to restrictions
  • How to Hide or Delete Outlook's Default Folders
  • Change Outlook's Programmatic Access Options
  • Use Public Folders In new Outlook
  • Removing Suggested Accounts in New Outlook
  • How to Delete Stuck Read Receipts
  • Sync Issues and Errors with Gmail and Yahoo accounts
  • Error Opening iCloud Appointments in Classic Outlook
  • Opt out of Microsoft 365 Companion Apps
  • Mail Templates in Outlook for Windows (and Web)
  • Urban legend: Microsoft Deletes Old Outlook.com Messages
  • Buttons in the New Message Notifications
  • Move Deleted Items to Another Folder Automatically
  • Open Outlook Templates using PowerShell
  • Count and List Folders in Classic Outlook
  • Google Workspace and Outlook with POP Mail
Ajax spinner

Recent Bugs List

Microsoft keeps a running list of issues affecting recently released updates at Fixes or workarounds for recent issues in classic Outlook (Windows).

For new Outlook for Windows: Fixes or workarounds for recent issues in new Outlook for Windows .

Outlook for Mac Recent issues: Fixes or workarounds for recent issues in Outlook for Mac

Outlook.com Recent issues: Fixes or workarounds for recent issues on Outlook.com

Office Update History

Update history for supported Office versions is at Update history for Office

Outlook Suggestions and Feedback

Outlook Feedback covers Outlook as an email client, including Outlook Android, iOS, Mac, and Windows clients, as well as the browser extension (PWA) and Outlook on the web.

Outlook (new) Feedback. Use this for feedback and suggestions for Outlook (new).

Use Outlook.com Feedback for suggestions or feedback about Outlook.com accounts.

Other Microsoft 365 applications and services




New Outlook Articles

Sync Issues and Errors with Gmail and Yahoo accounts

Error Opening iCloud Appointments in Classic Outlook

Opt out of Microsoft 365 Companion Apps

Mail Templates in Outlook for Windows (and Web)

Urban legend: Microsoft Deletes Old Outlook.com Messages

Buttons in the New Message Notifications

Move Deleted Items to Another Folder Automatically

Open Outlook Templates using PowerShell

Count and List Folders in Classic Outlook

Google Workspace and Outlook with POP Mail

Newest Code Samples

Open Outlook Templates using PowerShell

Count and List Folders in Classic Outlook

Insert Word Document into Email using VBA

Warn Before Deleting a Contact

Use PowerShell to Delete Attachments

Remove RE:, FWD:, and Other Prefixes from Subject Line

Change the Mailing Address Using PowerShell

Categorize @Mentioned Messages

Send an Email When You Open Outlook

Delete Old Calendar Events using VBA

Repair PST

Convert an OST to PST

Repair damaged PST file

Repair large PST File

Remove password from PST

Merge Two Data Files

Sync & Share Outlook Data

  • Share Calendar & Contacts
  • Synchronize two computers
  • Sync Calendar and Contacts Using Outlook.com
  • Sync Outlook & Android Devices
  • Sync Google Calendar with Outlook
  • Access Folders in Other Users Mailboxes

Diane Poremsky [Outlook MVP]

Make a donation

Mail Tools

Sending and Retrieval Tools

Mass Mail Tools

Compose Tools

Duplicate Remover Tools

Mail Tools for Outlook

Online Services

Calendar Tools

Schedule Management

Calendar Printing Tools

Calendar Reminder Tools

Calendar Dates & Data

Time and Billing Tools

Meeting Productivity Tools

Duplicate Remover Tools

Productivity

Productivity Tools

Automatic Message Processing Tools

Special Function Automatic Processing Tools

Housekeeping and Message Management

Task Tools

Project and Business Management Tools

Choosing the Folder to Save a Sent Message In

Run Rules on messages after reading

Help & Suggestions

Submit Outlook Feature Requests

Slipstick Support Services

Buy Microsoft 365 Office Software and Services

Visit Slipstick Forums.

What's New at Slipstick.com

Home | Outlook User | Exchange Administrator | Office 365 | Outlook.com | Outlook Developer
Outlook for Mac | Common Problems | Utilities & Addins | Tutorials
Outlook & iCloud Issues | Outlook Apps
EMO Archives | About Slipstick | Slipstick Forums
Submit New or Updated Outlook and Exchange Server Utilities

Send comments using our Feedback page
Copyright © 2026 Slipstick Systems. All rights reserved.
Slipstick Systems is not affiliated with Microsoft Corporation.