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
Branches
Tags 3.1-beta2
1 merge request!22Sitzungsdatum in Einladungsmail-Subject
...@@ -808,12 +808,12 @@ def send_reminder_async(reminder_id, protocol_id): ...@@ -808,12 +808,12 @@ def send_reminder_async(reminder_id, protocol_id):
if reminder.send_public: if reminder.send_public:
send_mail( send_mail(
protocol, protocol.protocoltype.public_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) reminder_text, reply_to=protocol.protocoltype.public_mail)
if reminder.send_private: if reminder.send_private:
send_mail( send_mail(
protocol, protocol.protocoltype.private_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) 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