From 80a5de9a5e77e5e568b08a76e6c51f62851b1b39 Mon Sep 17 00:00:00 2001 From: Big-Lolo <95545807+Big-Lolo@users.noreply.github.com> Date: Fri, 26 Sep 2025 14:07:45 +0200 Subject: [PATCH] Send mail Directly --- src/impl/Authentication/service.py | 1 + 1 file changed, 1 insertion(+) diff --git a/src/impl/Authentication/service.py b/src/impl/Authentication/service.py index 0f0d7fb0..0b9dafd1 100644 --- a/src/impl/Authentication/service.py +++ b/src/impl/Authentication/service.py @@ -159,6 +159,7 @@ def contact(self, payload: ContactMail): fields= f'{payload.name},{payload.email},{payload.title},{payload.message}' )) + self.mail_client.send_mail_by_id(mail.id) return { "success": mail is not None, "id": mail.id if mail is not None else None,