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