Skip to content
Snippets Groups Projects
Verified Commit c9b1686e authored by Jonathan Weth's avatar Jonathan Weth :keyboard:
Browse files

Fix typo

parent 19980e02
No related branches found
No related tags found
No related merge requests found
...@@ -33,7 +33,7 @@ def send_templated_sms( ...@@ -33,7 +33,7 @@ def send_templated_sms(
def _send_notification_email(notification: "Notification", template: str = "notification") -> None: def _send_notification_email(notification: "Notification", template: str = "notification") -> None:
context = { context = {
"notification": notification, "notification": notification,
"notification_user": notification.recipient.adressing_name, "notification_user": notification.recipient.addressing_name,
} }
send_templated_mail( send_templated_mail(
template_name=template, template_name=template,
...@@ -48,7 +48,7 @@ def _send_notification_sms( ...@@ -48,7 +48,7 @@ def _send_notification_sms(
) -> None: ) -> None:
context = { context = {
"notification": notification, "notification": notification,
"notification_user": notification.recipient.adressing_name, "notification_user": notification.recipient.addressing_name,
} }
send_templated_sms( send_templated_sms(
template_name=template, template_name=template,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment