Send mail even if the user is already registered
This commit is contained in:
+19
-19
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user