diff --git a/.isort.cfg b/.isort.cfg
index 25094f629aa66a17f7033c4e75bd1870dc3c882c..3213b0f88e550f3e8a5e76d58b3891e1966ed14c 100644
--- a/.isort.cfg
+++ b/.isort.cfg
@@ -4,4 +4,4 @@ multi_line_output=3
 include_trailing_comma=True
 lines_after_imports=2
 not_skip=__init__.py
-known_third_party = Crypto,apns2,jinja2,megabus,pytest,pywebpush,requests,smail,sqlalchemy,stomp,yaml
+known_third_party = Crypto,apns2,jinja2,mattermostdriver,megabus,pytest,pywebpush,requests,smail,sqlalchemy,stomp,yaml
diff --git a/notifications_consumer/processors/email/processor.py b/notifications_consumer/processors/email/processor.py
index 60231577e8d1625993a3df2bc2a2788dec4e4760..3bac1fca09d930e96cdf24c3aacff59572350cb5 100644
--- a/notifications_consumer/processors/email/processor.py
+++ b/notifications_consumer/processors/email/processor.py
@@ -44,7 +44,7 @@ class EmailProcessor(Processor):
         subject = f'[{kwargs["channel_name"]}] {kwargs["summary"]}'
 
         category_name = kwargs.get("category_name")
-        service_name = category_name if category_name else Config.SERVICE_NAME
+        service_name = f"{category_name} Notifications" if category_name else Config.SERVICE_NAME
 
         context = {
             "message_body": kwargs["message_body"],