diff --git a/services/web/project/__init__.py b/services/web/project/__init__.py index b95e678..1ef743d 100644 --- a/services/web/project/__init__.py +++ b/services/web/project/__init__.py @@ -310,12 +310,10 @@ def send_register_mail(signup_email): sender ='message@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 - Follow the link:" {% link_url %} - - https://dev-panel.mermsemr.com/csignup/eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ1c2VyIjp7ImlkIjoiOTgyODkyODQyODI4NTI4OSIsInVpZCI6Ijk4Mjg5Mjg0MjgyODUyODkifSwiZXhwIjoxNzM1NTA0MDE4fQ.pDQvYUr_PGZMeMO2gr-B3DRQ7AM7IjVM5vSERNTviG4 + Follow the link:{link_url} For any Support Reach Out @@ -323,6 +321,9 @@ def send_register_mail(signup_email): mail.send(msg) +# https://dev-panel.mermsemr.com/csignup/eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ1c2VyIjp7ImlkIjoiOTgyODkyODQyODI4NTI4OSIsInVpZCI6Ijk4Mjg5Mjg0MjgyODUyODkifSwiZXhwIjoxNzM1NTA0MDE4fQ.pDQvYUr_PGZMeMO2gr-B3DRQ7AM7IjVM5vSERNTviG4 + + @app.route("/panel/auth/register/verify", methods=["POST"]) def verify_register(): data = request.json