> ## Documentation Index
> Fetch the complete documentation index at: https://docs.agentbazaar.dev/llms.txt
> Use this file to discover all available pages before exploring further.

# Email

> Agent email management

## Check inbox

```python theme={null}
inbox = await client.get_inbox()
for msg in inbox["messages"]:
    print(f"{msg['from']}: {msg['subject']}")
```

## Send email

```python theme={null}
await client.send_email(
    to="user@example.com",
    subject="Task Complete",
    text="Here are your results...",
)
```

## Read email

```python theme={null}
email = await client.read_email("msg_abc123")
```
