• 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

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.

Subscribe
Notify of
35 Comments
newest
oldest most voted
Inline Feedbacks
View all comments

Karla K
October 4, 2016 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

0
0
Reply
Brad Smith (@bradsmithsc)
October 15, 2015 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

0
0
Reply
G
July 30, 2015 12:19 am

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

0
0
Reply
G
July 22, 2015 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.

0
0
Reply
Diane Poremsky
Author
Reply to  G
July 29, 2015 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.

0
0
Reply
Cam Robinson
June 16, 2014 5:35 pm

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

0
0
Reply
Diane Poremsky
Reply to  Cam Robinson
June 16, 2014 11:25 pm

No, the bitness wouldn't affect this.

0
0
Reply
Cam Robinson
June 16, 2014 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.

0
0
Reply
Diane Poremsky
Reply to  Cam Robinson
June 16, 2014 11:25 pm

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

0
0
Reply
Cameron Robinson
June 13, 2014 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

0
0
Reply
Diane Poremsky
Reply to  Cameron Robinson
June 13, 2014 3:25 pm

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

0
0
Reply
Cameron Robinson
Reply to  Diane Poremsky
June 13, 2014 3:35 pm

I created the key but it had not affect.

0
0
Reply
Diane Poremsky
Reply to  Cameron Robinson
June 15, 2014 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?

0
0
Reply
Alex K
March 7, 2014 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.

0
0
Reply
Diane Poremsky
Reply to  Alex K
March 7, 2014 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.

0
0
Reply

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

Latest EMO: Vol. 30 Issue 34

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
  • Mail Templates in Outlook for Windows (and Web)
  • How to Remove the Primary Account from Outlook
  • Adjusting Outlook's Zoom Setting in Email
  • This operation has been cancelled due to restrictions
  • Reset the New Outlook Profile
  • Disable "Always ask before opening" Dialog
  • How to Hide or Delete Outlook's Default Folders
  • Removing Suggested Accounts in New Outlook
  • Remove a password from an Outlook *.pst File
  • 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
  • Import EML Files into New Outlook
  • Opening PST files in New Outlook
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

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

Import EML Files into New Outlook

Opening PST files in New Outlook

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 © 2025 Slipstick Systems. All rights reserved.
Slipstick Systems is not affiliated with Microsoft Corporation.

:wpds_smile::wpds_grin::wpds_wink::wpds_mrgreen::wpds_neutral::wpds_twisted::wpds_arrow::wpds_shock::wpds_unamused::wpds_cool::wpds_evil::wpds_oops::wpds_razz::wpds_roll::wpds_cry::wpds_eek::wpds_lol::wpds_mad::wpds_sad::wpds_exclamation::wpds_question::wpds_idea::wpds_hmm::wpds_beg::wpds_whew::wpds_chuckle::wpds_silly::wpds_envy::wpds_shutmouth:
wpDiscuz

Sign up for Exchange Messaging Outlook

Our weekly Outlook & Exchange newsletter (bi-weekly during the summer)






Please note: If you subscribed to Exchange Messaging Outlook before August 2019, please re-subscribe.

Never see this message again.

You are going to send email to

Move Comment