diff --git a/notifications_consumer/email_templates/base_email.html b/notifications_consumer/email_templates/base_email.html
index fec74f092d230068c93995d2d803655de8c86232..c47b8f5885b1e47d647eeeda981c5ebd4f980c15 100644
--- a/notifications_consumer/email_templates/base_email.html
+++ b/notifications_consumer/email_templates/base_email.html
@@ -74,4 +74,4 @@
       </td>
     </tr>
   </table>
-</body>
\ No newline at end of file
+</body>
diff --git a/notifications_consumer/processors/email/processor.py b/notifications_consumer/processors/email/processor.py
index 0da99e7cae1dd550f62c803fed0bf86917e9ffe5..c42c35cae41a15beb0b4a05e0cfdfead62b36a54 100644
--- a/notifications_consumer/processors/email/processor.py
+++ b/notifications_consumer/processors/email/processor.py
@@ -30,6 +30,9 @@ class EmailProcessor(Processor):
         """Process the message and send an email."""
         logging.debug("%s - status:running - kwargs:%r", self, kwargs)
 
+        # Revert this change after discussion
+        disabled_category = True
+
         recipient_email = kwargs["email"]
         if Config.ENV == ENV_DEV:
             email_whitelist = get_email_whitelist(Config.EMAIL_WHITELIST_GROUP_ID)
@@ -52,7 +55,7 @@ class EmailProcessor(Processor):
 
         subject = f'[{kwargs["channel_name"]}] {kwargs["summary"]}'
 
-        category_name = kwargs.get("category_name")
+        category_name = kwargs.get("category_name") if not disabled_category else None
         service_name = f"{category_name} Notifications" if category_name else Config.SERVICE_NAME
 
         context = {