File size: 236 Bytes
83fe4f9
 
 
 
 
 
1
2
3
4
5
6
7
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"}