Explorar el Código

Fix mail to ascii

master
tr4ck3ur des JM2L hace 8 años
padre
commit
3ba8e9f401
Se han modificado 1 ficheros con 3 adiciones y 7 borrados
  1. +3
    -7
      jm2l/__init__.py

+ 3
- 7
jm2l/__init__.py Ver fichero

@@ -41,20 +41,16 @@ def mailer_tasks(config):
# Prepare Plain Text Message :
Mail_template = Template(filename='jm2l/templates/mail_plain.mako')
mail_plain = Mail_template.render(request=request, User=StaffUser, Contact=Contact, action="Tasks")
att_plain = Attachment( data=mail_plain,
content_type="text/plain; charset='utf-8'", transfer_encoding='quoted-printable')
mail_plain = Mail_template.render(request=request, User=StaffUser, Contact=Contact, action="Tasks", output_encoding='ascii',)
# Prepare HTML Message :
Mail_template = Template(filename='jm2l/templates/mail_html.mako')
mail_html = Mail_template.render(request=request, User=StaffUser, Contact=Contact, action="Tasks")
att_html = Attachment( data=mail_html,
content_type="text/html; charset='utf-8'", transfer_encoding='quoted-printable')
mail_html = Mail_template.render(request=request, User=StaffUser, Contact=Contact, action="Tasks", output_encoding='ascii',)
# Prepare Message
message = Message(subject="[JM2L] Rappel des Tâches pour les JM2L",
sender="contact@jm2l.linux-azur.org",
recipients=[StaffUser.mail],
body=att_plain, html=att_html)
body=mail_plain, html=mail_html)
message.add_bcc("spam@style-python.fr")


Cargando…
Cancelar
Guardar