feat(backend): stub email manager

This commit is contained in:
Nicholas Tindle
2025-02-03 18:51:32 -06:00
parent 041e2810d0
commit 384a07951a

View File

@@ -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}"
)