flow-pilot / backend /integrations /gmail_client.py
DevelopedBy-Siva
setup the initial app and deploy
83fe4f9
class GmailClient:
def list_recent_messages(self) -> list[dict]:
return []
def send_email(self, to: str, subject: str, body: str) -> dict:
return {"to": to, "subject": subject, "body": body, "status": "queued"}