Skip to content
Snippets Groups Projects
Commit a4749505 authored by Magnus Giesbert's avatar Magnus Giesbert
Browse files

Merge branch '244-einladungsmail-subject-konkrete-sitzung-aufnehmen' into 'master'

Sitzungsdatum in Einladungsmail-Subject

Closes #244

See merge request !22
parents bb2fa7ed f7f1799c
No related branches found
No related tags found
No related merge requests found
......@@ -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)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment