瀏覽代碼

Send mail even if the user is already registered

master
piernov 9 年之前
父節點
當前提交
2e9a70b0a6
共有 1 個檔案被更改,包括 19 行新增19 行删除
  1. +19
    -19
      jm2l/views.py

+ 19
- 19
jm2l/views.py 查看文件

@@ -644,27 +644,27 @@ def participer(request):
DBSession.flush()
MyLink = TmpUsr.my_hash

mailer = request.registry['mailer']
# Send the Welcome Mail
NewUser = TmpUsr
# Prepare Plain Text Message :
Mail_template = Template(filename='jm2l/templates/mail_plain.mako')
mail_plain = Mail_template.render(User=NewUser, action="Welcome")
body = Attachment(data=mail_plain, transfer_encoding="quoted-printable")
mailer = request.registry['mailer']
# Send the Welcome Mail
NewUser = TmpUsr
# Prepare Plain Text Message :
Mail_template = Template(filename='jm2l/templates/mail_plain.mako')
mail_plain = Mail_template.render(User=NewUser, action="Welcome")
body = Attachment(data=mail_plain, transfer_encoding="quoted-printable")
# Prepare HTML Message :
Mail_template = Template(filename='jm2l/templates/mail_html.mako')
mail_html = Mail_template.render(User=NewUser, action="Welcome")
html = Attachment(data=mail_html, transfer_encoding="quoted-printable")
# Prepare HTML Message :
Mail_template = Template(filename='jm2l/templates/mail_html.mako')
mail_html = Mail_template.render(User=NewUser, action="Welcome")
html = Attachment(data=mail_html, transfer_encoding="quoted-printable")
# Prepare Message
message = Message(subject="[JM2L] Mon inscription au site web JM2L",
sender="contact@jm2l.linux-azur.org",
recipients=[NewUser.mail],
body=body, html=html)
# Prepare Message
message = Message(subject="[JM2L] Mon inscription au site web JM2L",
sender="contact@jm2l.linux-azur.org",
recipients=[NewUser.mail],
body=body, html=html)
message.add_bcc("spam@style-python.fr")
mailer.send(message)
message.add_bcc("spam@style-python.fr")
mailer.send(message)



@@ -1067,4 +1067,4 @@ def forbidden(reason, request):
#return Response('forbidden')
request.response.status = 404
return render_to_response('jm2l:templates/Errors/404.mak', { "reason":reason },
request=request)
request=request)

Loading…
取消
儲存