Compare commits

...

2 Commits

Author SHA1 Message Date
Aiirondev_dev a4cf9626cd changes to the send testmail 2026-09-17 20:30:48 +02:00
Aiirondev_dev fa55717f7f changes to have the test email function 2026-09-17 20:22:30 +02:00
+1 -1
View File
@@ -13764,7 +13764,7 @@ def test_email():
#This is for development purposes only.
try:
send(to_email="maximiliangruendinger@gmail.com", subject="Test Email from Inventarsystem", body="This is a test email sent from the Inventarsystem application.")
send(email="maximiliangruendinger@gmail.com", subject="Test Email from Inventarsystem", note="This is a test email sent from the Inventarsystem application.", sender="Inventarsystem <no-reply@invario-software.de>")
return "Test email sent successfully."
except Exception as e:
return f"Failed to send test email: {str(e)}", 500