From d2e2339d219c72244a6544346de3cf38c547e8a9 Mon Sep 17 00:00:00 2001 From: Aiirondev Date: Fri, 18 Sep 2026 16:01:37 +0200 Subject: [PATCH] removal of test emial sending service --- Web/app.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Web/app.py b/Web/app.py index bf9a0f0..14ed384 100755 --- a/Web/app.py +++ b/Web/app.py @@ -13759,6 +13759,7 @@ def upload_csv_batch(): "images_failed": error_count }), 200 +""" @app.route('/test_email') def test_email(): @@ -13769,4 +13770,5 @@ def test_email(): send(email="maximiliangruendinger@gmail.com", subject="Test Email from Inventarsystem", note="This is a test email sent from the Inventarsystem application.", sender="Inventarsystem") return "Test email sent successfully." except Exception as e: - return f"Failed to send test email: {str(e)}", 500 \ No newline at end of file + return f"Failed to send test email: {str(e)}", 500 +""" \ No newline at end of file