diff --git a/tasks.py b/tasks.py index 25b4df1f657b8b9a09c100c358513d783e12528b..4a8b2a4ff32d714fd65d73eead5be704d964d215 100644 --- a/tasks.py +++ b/tasks.py @@ -808,12 +808,12 @@ def send_reminder_async(reminder_id, protocol_id): if reminder.send_public: send_mail( protocol, protocol.protocoltype.public_mail, - "Tagesordnung der {}".format(protocol.protocoltype.name), + "Tagesordnung der {} am {}".format(protocol.protocoltype.name, date_filter_short(protocol.date)), reminder_text, reply_to=protocol.protocoltype.public_mail) if reminder.send_private: send_mail( protocol, protocol.protocoltype.private_mail, - "Tagesordnung der {}".format(protocol.protocoltype.name), + "Tagesordnung der {} am {}".format(protocol.protocoltype.name, date_filter_short(protocol.date)), reminder_text, reply_to=protocol.protocoltype.private_mail)