stripped html-tags from emails
This commit is contained in:
parent
49a0fa63ac
commit
0c863bce22
7
TODO
7
TODO
|
@ -1,9 +1,5 @@
|
||||||
known bugs:
|
known bugs:
|
||||||
|
|
||||||
- there is html-code in some plain text mails, because they use
|
|
||||||
models.TYPE_CHOICES, which is in html, because it is mainly used for the
|
|
||||||
webside side of things.
|
|
||||||
|
|
||||||
- helptext by /intern email: "Bitte gib deine E-Mail-Adresse ein, damit dich
|
- helptext by /intern email: "Bitte gib deine E-Mail-Adresse ein, damit dich
|
||||||
Wikimedia Deutschland bei Rückfragen oder für
|
Wikimedia Deutschland bei Rückfragen oder für
|
||||||
die Zusage kontaktieren kann." maybe this this misleading?
|
die Zusage kontaktieren kann." maybe this this misleading?
|
||||||
|
@ -11,9 +7,6 @@ die Zusage kontaktieren kann." maybe this this misleading?
|
||||||
- if the mailserver is unavaiable we just produce "Server Error 500", which is not very telling.
|
- if the mailserver is unavaiable we just produce "Server Error 500", which is not very telling.
|
||||||
There should maybe also a way to handle mails later if first delivery failed.
|
There should maybe also a way to handle mails later if first delivery failed.
|
||||||
|
|
||||||
- there are some issues with the ifg_volunteer_mail.txt template.
|
|
||||||
|
|
||||||
- project.pk generation fails at the moment (seond save() in old code)
|
|
||||||
|
|
||||||
other known problems:
|
other known problems:
|
||||||
|
|
||||||
|
|
|
@ -2,7 +2,7 @@ Hallo Team Ideenförderung,
|
||||||
|
|
||||||
es gab einen neuen Antrag von {{data.realname}}.
|
es gab einen neuen Antrag von {{data.realname}}.
|
||||||
|
|
||||||
Der Nutzer mit dem Username {{data.username}} ({{data.email}}) fragt ein_e {{data.typestring}} an.
|
Der Nutzer mit dem Username {{data.username}} ({{data.email}}) fragt ein_e {{data.typestring|striptags}} an.
|
||||||
{% if data.choice in data.grant %}
|
{% if data.choice in data.grant %}
|
||||||
Vorraussichtliche Kosten: {{data.cost}}
|
Vorraussichtliche Kosten: {{data.cost}}
|
||||||
Anmerkungen: {{data.notes}} {% endif %} {% if data.choice in data.domain %}
|
Anmerkungen: {{data.notes}} {% endif %} {% if data.choice in data.domain %}
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
Hallo {{data.realname}},
|
Hallo {{data.realname}},
|
||||||
|
|
||||||
wir haben Deine Anfrage ({{data.typestring}}) erhalten.
|
wir haben Deine Anfrage ({{data.typestring|striptags}}) erhalten.
|
||||||
{% if data.choice in data.grant %}
|
{% if data.choice in data.grant %}
|
||||||
Vorraussichtliche Kosten: {{data.cost}}
|
Vorraussichtliche Kosten: {{data.cost}}
|
||||||
Anmerkungen: {{data.notes}} {% endif %} {% if data.choice in data.domain %}
|
Anmerkungen: {{data.notes}} {% endif %} {% if data.choice in data.domain %}
|
||||||
|
|
Loading…
Reference in New Issue