diff --git a/backend/email_service.py b/backend/email_service.py index 50ada61..ccb936b 100644 --- a/backend/email_service.py +++ b/backend/email_service.py @@ -29,11 +29,6 @@ def hash_token(token: str) -> str: token.encode("utf-8") ).hexdigest() - -# ============================================================ -# EMAIL -# ============================================================ - def send_email( email: str, subject: str, @@ -134,7 +129,7 @@ If you did not request this, you can ignore this email.

- Verify your email address + https://ben.de-roo.org/api/verify

@@ -198,7 +193,7 @@ If you did not request this, you can ignore this email.

- Reset your password + https://ben.de-roo.org/api/update-password_page

@@ -222,11 +217,6 @@ If you did not request this, you can ignore this email. html=html, ) - -# ============================================================ -# EMAIL ADDRESS VERIFICATION -# ============================================================ - def update_email( user_id: int, new_email: str, @@ -435,11 +425,6 @@ def verify_email( finally: conn.close() - -# ============================================================ -# PASSWORD RESET -# ============================================================ - def create_password_reset( user_id: int, ):