Removed mail debug
All checks were successful
Build on push / prepare (push) Successful in 7s
Build on push / build-redirector (push) Successful in 37s
Build on push / build-api (push) Successful in 37s
Build on push / build-web (push) Successful in 58s

This commit is contained in:
Sven Heidemann 2025-05-02 12:13:08 +02:00
parent 9935e30d83
commit 073400567b

View File

@ -23,10 +23,6 @@ class MailService:
def send(self, to: str, subject: str, body: str):
logger.debug(f"Preparing to send email to: {to}, subject: {subject}")
logger.debug(
f"Server {self._server}, Port: {self._port}, User: {self._user}, pw {self._password}, From: {self._from}"
)
msg = MIMEMultipart()
msg["From"] = self._from
msg["To"] = to