fixed bug which leeds to mails not be sent
This commit is contained in:
parent
f870fcab08
commit
276acec502
|
@ -76,7 +76,7 @@ class Command(BaseCommand):
|
||||||
if type == 'LIB':
|
if type == 'LIB':
|
||||||
mytype = item.type
|
mytype = item.type
|
||||||
elif type not in ('MAIL','VIS','LIST'):
|
elif type not in ('MAIL','VIS','LIST'):
|
||||||
myname = item.name
|
myname = getattr(item, name, 'ERROR: NONAME')
|
||||||
print(f'name gefunden: {myname}')
|
print(f'name gefunden: {myname}')
|
||||||
self.survey_link(email=item.email,
|
self.survey_link(email=item.email,
|
||||||
type=mytype,
|
type=mytype,
|
||||||
|
|
|
@ -10,7 +10,7 @@ Du hast von uns eine Bescheinigung ({{name}}) erhalten.
|
||||||
Du hast von uns ein Bibliotheksstipendium für {{name}} erhalten.
|
Du hast von uns ein Bibliotheksstipendium für {{name}} erhalten.
|
||||||
{% elif type == 'ELIT' %}
|
{% elif type == 'ELIT' %}
|
||||||
Du hast von uns ein eLiteraturstipendium für {{name}} erhalten.
|
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}}
|
Wir haben Dich bei einer IFG-Anfrage unterstützt: {{name}}
|
||||||
{% elif type == 'LIT' %}
|
{% elif type == 'LIT' %}
|
||||||
Du hast von uns ein Literaturstipendium für {{name}} erhalten.
|
Du hast von uns ein Literaturstipendium für {{name}} erhalten.
|
||||||
|
|
Loading…
Reference in New Issue