create_inbox
Create a programmatic email inbox and get its address. Call this at the start of a test flow, then drive the app under test with the returned email_address. Use one inbox per test for isolation.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| domain | No | Domain the inbox lives on (fqdn). Omit for the shared utility domain; set to one of the account's verified custom domains otherwise. | |
| local_part | No | Local part of the address (1-64 chars of [a-z0-9._-]). Omit for a random one — the safe default for inbox-per-test isolation. | |
| ttl_seconds | No | Auto-delete after this many seconds (60..=2592000). Omit for no TTL. Prefer a TTL in test suites so abandoned inboxes clean themselves up. |