> ## Documentation Index
> Fetch the complete documentation index at: https://notte-experiment-visibility-md-links.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# emails

> Read recent emails sent to the persona

```python theme={null}
persona = notte.Persona("<your-persona-id>")
emails = persona.emails()
```

You can also filter the emails by using the `only_unread` parameter.

```python theme={null}
emails = persona.emails(only_unread=True)
```

Be careful once emails are listed, they are considered read.

Use the `limit` and/or `timedelta` parameters to limit the number of emails returned

## Parameters

<ParamField path="limit" type="int">
  Max number of emails to return
</ParamField>

<ParamField path="timedelta" type="datetime.timedelta | None">
  Return only emails that are not older than `timedelta`
</ParamField>

<ParamField path="only_unread" type="bool" />

## Returns

`Sequence`\[[`EmailResponse`](/sdk-reference/misc/emailresponse.md)]
