From 384a07951a9251df0ace2eda4380e12a3416763f Mon Sep 17 00:00:00 2001 From: Nicholas Tindle Date: Mon, 3 Feb 2025 18:51:32 -0600 Subject: [PATCH] feat(backend): stub email manager --- autogpt_platform/backend/backend/notifications/email.py | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/autogpt_platform/backend/backend/notifications/email.py b/autogpt_platform/backend/backend/notifications/email.py index c9a6836dad..3f9886b987 100644 --- a/autogpt_platform/backend/backend/notifications/email.py +++ b/autogpt_platform/backend/backend/notifications/email.py @@ -1,3 +1,10 @@ +import logging + +logger = logging.getLogger(__name__) + + class AsyncEmailSender: def send_email(self, user_id: str, subject: str, body: str): - pass + logger.info( + f"Sending email to {user_id} with subject {subject} and body {body}" + )