Projet

Général

Profil

0001-templates-do-not-escape-characters-in-text-plain-ema.patch

Frédéric Péters, 27 novembre 2018 17:41

Télécharger (3,33 ko)

Voir les différences:

Subject: [PATCH] templates: do not escape characters in text/plain emails
 (#28383)

 .../authentic2/api_user_create_registration_email_body.txt    | 4 ++--
 templates/authentic2/change_email_notification_body.txt       | 4 ++--
 templates/authentic2/password_change_body.txt                 | 4 ++--
 templates/authentic2/password_reset_email_body.txt            | 4 ++--
 4 files changed, 8 insertions(+), 8 deletions(-)
templates/authentic2/api_user_create_registration_email_body.txt
1 1
{% extends "emails/body_base.txt" %}
2
{% block content %}Bonjour,
2
{% block content %}{% autoescape off %}Bonjour,
3 3

  
4 4
À votre demande, un compte vient de vous être créé :
5 5

  
......
18 18
{% else %}
19 19
Attention, cette action n'est valide que durant {{ expiration_days }} jours.
20 20
{% endif %}
21
{% endblock %}
21
{% endautoescape %}{% endblock %}
templates/authentic2/change_email_notification_body.txt
1 1
{% extends "emails/body_base.txt" %}
2
{% block content %}Bonjour,
2
{% block content %}{% autoescape off %}Bonjour,
3 3

  
4 4
Vous avez demandé à changer l'adresse électronique de votre compte
5 5
de {{ old_email }} à {{ email }}.
......
8 8

  
9 9
  {{ link }}
10 10

  
11
{% endblock %}
11
{% endautoescape %}{% endblock %}
templates/authentic2/password_change_body.txt
1 1
{% extends "emails/body_base.txt" %}
2
{% block content %}Bonjour,
2
{% block content %}{% autoescape off %}Bonjour,
3 3

  
4 4
Vous avez changé le mot de passe de votre compte.
5 5

  
......
7 7
Si vous n'aviez pas demandé le changement de votre mot de passe, vous pouvez
8 8
contacter l'équipe « {% firstof global_title site_name site "Compte Citoyen" %} ».
9 9
{% endblock %}
10
{% endblock %}
10
{% endautoescape %}{% endblock %}
templates/authentic2/password_reset_email_body.txt
1 1
{% extends "emails/body_base.txt" %}
2
{% block content %}Bonjour,
2
{% block content %}{% autoescape off %}Bonjour,
3 3

  
4 4
Vous avez oublié votre mot de passe ?
5 5

  
......
18 18
votre demande sera annulée.
19 19
{% endif %}
20 20

  
21
{% endblock %}
21
{% endautoescape %}{% endblock %}
22
-