Compare commits

...

1 Commits

Author SHA1 Message Date
Aiirondev_dev d002c5f9da changes 2026-09-16 17:14:37 +02:00
+2 -5
View File
@@ -12,12 +12,9 @@ logger = logging.getLogger(__name__)
def _build_smtp_client():
if not cfg.EMAIL_SMTP_HOST:
raise RuntimeError('EMAIL_SMTP_HOST ist nicht konfiguriert')
smtp = smtplib.SMTP(
cfg.EMAIL_SMTP_HOST,
cfg.EMAIL_SMTP_PORT,
"mail.invario-software.de",
587,
timeout=cfg.EMAIL_TIMEOUT_SECONDS,
)
smtp.ehlo()