From 276acec50227d8c245caf4811565b84b22044947 Mon Sep 17 00:00:00 2001 From: Benni Baermann Date: Tue, 16 Mar 2021 13:08:50 +0100 Subject: [PATCH] fixed bug which leeds to mails not be sent --- input/management/commands/sendmails.py | 2 +- input/templates/input/survey_mail.txt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/input/management/commands/sendmails.py b/input/management/commands/sendmails.py index 3a4f93f..4494851 100644 --- a/input/management/commands/sendmails.py +++ b/input/management/commands/sendmails.py @@ -76,7 +76,7 @@ class Command(BaseCommand): if type == 'LIB': mytype = item.type elif type not in ('MAIL','VIS','LIST'): - myname = item.name + myname = getattr(item, name, 'ERROR: NONAME') print(f'name gefunden: {myname}') self.survey_link(email=item.email, type=mytype, diff --git a/input/templates/input/survey_mail.txt b/input/templates/input/survey_mail.txt index 0060ab2..9dbaded 100644 --- a/input/templates/input/survey_mail.txt +++ b/input/templates/input/survey_mail.txt @@ -10,7 +10,7 @@ Du hast von uns eine Bescheinigung ({{name}}) erhalten. Du hast von uns ein Bibliotheksstipendium für {{name}} erhalten. {% elif type == 'ELIT' %} Du hast von uns ein eLiteraturstipendium für {{name}} erhalten. -{% elif type == 'IFG'} +{% elif type == 'IFG' %} Wir haben Dich bei einer IFG-Anfrage unterstützt: {{name}} {% elif type == 'LIT' %} Du hast von uns ein Literaturstipendium für {{name}} erhalten.