mirror of
https://github.com/Significant-Gravitas/AutoGPT.git
synced 2026-01-21 04:57:58 -05:00
feat(backend): stub email manager
This commit is contained in:
@@ -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}"
|
||||
)
|
||||
|
||||
Reference in New Issue
Block a user