diff --git a/src/fellchensammlung/mail.py b/src/fellchensammlung/mail.py index 94c0c46..211844a 100644 --- a/src/fellchensammlung/mail.py +++ b/src/fellchensammlung/mail.py @@ -35,7 +35,7 @@ def mail_admins_new_report(report): def send_notification_email(notification_pk): notification = Notification.objects.get(pk=notification_pk) - subject = f"🔔 {notification.title}" + subject = f"{notification.title}" context = {"notification": notification, } if notification.notification_type == NotificationTypeChoices.NEW_REPORT_COMMENT or notification.notification_type == NotificationTypeChoices.NEW_REPORT_AN: context["user_comment"] = notification.report.user_comment