diff --git a/aleksis/core/util/notifications.py b/aleksis/core/util/notifications.py
index 33b92251b302c3f8051a13b4dc39b77d4676ce5a..c9cbcb9f76700d3e26f9c448a5e02c5e103a4936 100644
--- a/aleksis/core/util/notifications.py
+++ b/aleksis/core/util/notifications.py
@@ -33,7 +33,7 @@ def send_templated_sms(
 def _send_notification_email(notification: "Notification", template: str = "notification") -> None:
     context = {
         "notification": notification,
-        "notification_user": notification.recipient.adressing_name,
+        "notification_user": notification.recipient.addressing_name,
     }
     send_templated_mail(
         template_name=template,
@@ -48,7 +48,7 @@ def _send_notification_sms(
 ) -> None:
     context = {
         "notification": notification,
-        "notification_user": notification.recipient.adressing_name,
+        "notification_user": notification.recipient.addressing_name,
     }
     send_templated_sms(
         template_name=template,