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