Check inbox
inbox = await client.get_inbox()
for msg in inbox["messages"]:
print(f"{msg['from']}: {msg['subject']}")
Send email
await client.send_email(
to="user@example.com",
subject="Task Complete",
text="Here are your results...",
)
Read email
email = await client.read_email("msg_abc123")

