Skip to content

How to disable Outlook reactions

Organizations want to turn off reactions to emails in Microsoft Outlook to avoid distractions. Microsoft gave us an option to disable Outlook reactions. You can disallow reactions to any email sent outside and inside an organization. In this article, you will learn how to disable Outlook reactions in the Exchange admin center and with PowerShell.

What are Outlook reactions?

In Outlook, you can respond to an email with emoji reactions. You can send a thumbs up or smiley face without replying to the email. When a recipient adds a reaction to an email message, the email sender receives a notification. Some organizations find this distracting and want to disable this feature to react with emojis to emails.

Send Outlook reactions email

At first, there was no option to disallow reactions. Now, it’s possible to turn off reactions on a single email or all emails in your organization.

Disallow reactions on sent email in Outlook on the web (OWA)

Microsoft started rollout to disallow reaction on emails in September 2023, but the updates are not yet available to all. You can disallow reactions in Outlook on the Web and the New Outlook for Windows. The option will be available when users are still drafting their email and can’t be changed after the email is sent.

Follow the below steps to disallow reactions:

  1. Sign in to Outlook on the web
  2. Click on New email and open it in a new window
  3. Click on Options
  4. Enable Disallow reactions
  5. Send the email
Disallow reactions in Outlook on the Web (OWA)
  1. The recipient, David Kent, opens the email message
  2. The emoji reactions feature is grayed out
Disable Outlook reactions grayed out

The disadvantage is that this option is unavailable in the Outlook app, so it will not work from there. Some organization users can’t see this option in Outlook on the Web (OWA). Therefore, it’s best to create a mail flow rule for the entire organization.

We will show you how to disable reactions in Outlook in the following ways:

  • Exchange admin center
  • Exchange Online PowerShell

Disable reactions in Exchange admin center

We will show you how to create a mail flow rule that disallows reactions to emails received from inside and outside the organization.

Create new mail flow rule disallow reactions

How to create a new mail flow rule for senders outside the organization:

  1. Go to the Exchange admin center
  2. Click Mail flow > Rules
  3. Click Add a rule
  4. Select Create a new rule
Create a new mail flow rule in Exchange admin center
  1. Name the rule Disable reactions
  2. Set the below conditions
  3. Click Next
Set disable reactions rule conditions
  1. Fill in the comments section with the current date and the link to the article so you or your colleagues are always up to date.
  2. Click Next
Set disable reactions rule settings
  1. Click Finish
Review and finish disable reactions rule
  1. Click Done
Transport rule created successfully
  1. Go to Rules list
  2. Click on newly created rule Disable reactions
  3. Enable the rule
Enable the new mail flow rule status

You successfully have set up a mail flow rule that disallows reactions to emails received from inside and outside the organization.

Disable reactions with PowerShell

Let’s look at how to create a mail flow rule with Exchange Online PowerShell that disallows reactions to emails received from inside and outside the organization.

Connect to Exchange Online

To be able to run the PowerShell commands specified, you will need to Connect to Exchange Online PowerShell.

Start Windows PowerShell as administrator and run the cmdlet Connect-ExchangeOnline.

Connect-ExchangeOnline

Create new mail flow rule disallow reactions

First, you must create a mail flow rule to disallow any reactions in Outlook. We defined the customer header and its value.

Run the below PowerShell script.

$CustomHeaderName = "x-ms-reactions"
$CustomHeaderValue = "disallow"
$RulePriority = 1

New-TransportRule -Name "Disable Reactions" -SetHeaderName $CustomHeaderName -SetHeaderValue $CustomHeaderValue -Priority $RulePriority

The PowerShell output shows you have created the mail flow rule that will disable reactions to emails.

Name              State   Mode    Priority IsRuleConfigurationSupported Comments
----              -----   ----    -------- ---------------------------- --------
Disable Reactions Enabled Enforce 1        True                                 

The mail flow rule Disable Reactions is enabled, so you don’t need to do anything. Check if the transport rule works in the next step.

Verify reactions disabled in Outlook

You can check if the reactions are disabled in Outlook. The emoji reactions should be grayed out in Outlook for all the users in your organization.

Check email sent from external

We sent an email from outside the organization (Gmail) to a recipient in our organization.

Check email sent from external sender:

  1. Sign in to Outlook on the web
  2. Open the email
  3. The emoji reactions feature is grayed out
Disable Outlook reactions email from outside organization

Check email sent from internal

We sent an email from an internal sender to an internal recipient.

Check email sent from internal sender:

  1. Sign in to Outlook on the web
  2. Open the email
  3. The emoji reactions feature is grayed out
Disable Outlook reactions email from inside organization

Did this help you to disable reactions in your organization?

Read more: Enable or disable Exchange ActiveSync mailboxes »

Conclusion

You learned how to disable Outlook reactions for the entire organization. First, create a new mail flow rule in the Exchange admin center or with PowerShell. After that, it will disallow reactions in Outlook for the users in your organization.

Did you enjoy this article? You may also like Configure Catch all Mailbox in Microsoft 365. Don’t forget to follow us and share this article.

o365info Team

o365info Team

This article was written by our team of experienced IT architects, consultants, and engineers.

This Post Has One Comment

  1. Brilliant! Sometimes we need things without knowing that we need it. This could be one of those things 😁

Leave a Reply

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