Compare commits

..

1 Commits

Author SHA1 Message Date
Aiirondev_dev 027cef257d changes to the client building for the email requests 2026-09-17 17:42:00 +02:00
+5 -3
View File
@@ -11,15 +11,17 @@ def _build_smtp_client():
smtp = smtplib.SMTP(
"mail.invario-software.de",
587,
timeout=1,
timeout=10,
)
smtp.ehlo()
smtp.starttls()
smtp.ehlo()
if True:
smtp.starttls()
smtp.ehlo()
smtp.login("no-reply@invario-software.de", "#,EATwIn,68")
return smtp
def _normalize_recipients(email: list | str) -> list[str]:
if isinstance(email, str):
email = email.replace(';', ',').split(',')