fix string

This commit is contained in:
CHIEFSOFT\ameye
2025-01-07 08:53:57 -05:00
parent 9a15dee102
commit b01347dde2
+5 -4
View File
@@ -310,12 +310,10 @@ def send_register_mail(signup_email):
sender ='message@chiefsoft.com', sender ='message@chiefsoft.com',
recipients = [signup_email,'ameye+merscopy@chiefsoft.com'] recipients = [signup_email,'ameye+merscopy@chiefsoft.com']
) )
msg.body = """Hello Firstname, msg.body = f"""Hello Firstname,
You received this message for account verification You received this message for account verification
Follow the link:" {% link_url %} Follow the link:{link_url}
https://dev-panel.mermsemr.com/csignup/eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ1c2VyIjp7ImlkIjoiOTgyODkyODQyODI4NTI4OSIsInVpZCI6Ijk4Mjg5Mjg0MjgyODUyODkifSwiZXhwIjoxNzM1NTA0MDE4fQ.pDQvYUr_PGZMeMO2gr-B3DRQ7AM7IjVM5vSERNTviG4
For any Support For any Support
Reach Out Reach Out
@@ -323,6 +321,9 @@ def send_register_mail(signup_email):
mail.send(msg) mail.send(msg)
# https://dev-panel.mermsemr.com/csignup/eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ1c2VyIjp7ImlkIjoiOTgyODkyODQyODI4NTI4OSIsInVpZCI6Ijk4Mjg5Mjg0MjgyODUyODkifSwiZXhwIjoxNzM1NTA0MDE4fQ.pDQvYUr_PGZMeMO2gr-B3DRQ7AM7IjVM5vSERNTviG4
@app.route("/panel/auth/register/verify", methods=["POST"]) @app.route("/panel/auth/register/verify", methods=["POST"])
def verify_register(): def verify_register():
data = request.json data = request.json