Command
nylas inbound create
The nylas inbound create command provisions a managed email address (e.g., support@yourapp.nylas.email) that can receive messages without OAuth or provider configuration. Supports wildcard patterns for catch-all addresses, making it ideal for E2E testing, QA automation, and transactional email workflows.
Usage
nylas inbound create <prefix|pattern>Flags
| Flag | Description |
|---|---|
| --json | Output as JSON |
| --no-color | Disable color output |
| --verbose(-v) | Enable verbose output |
| --config | Custom config file path |
| --help(-h) | Show help for the command |
| --limit | Limit results (most list commands) |
| --yes(-y) | Skip confirmations |
Examples
Create support inbox
nylas inbound create support
# Creates support@yourapp.nylas.emailCatch-all with wildcard
nylas inbound create "e2e-*@yourorg.nylas.email"
# All e2e-* addresses deliver to same inboxTroubleshooting
Wildcard pattern rejected
Ensure format matches your domain. Use quotes for patterns with *.
Recommended guides
Receive Email Without an SMTP Server
Create a managed email address and process incoming messages via webhooks — no Postfix, no MX records. nylas inbound works with Gmail, Outlook, Exchange, Yahoo, iCloud, and IMAP.
Extract OTP Codes from Email — Skip the Inbox
Pull 2FA verification codes from email without opening your inbox. nylas otp get copies the code to your clipboard. Works with Gmail, Outlook, Exchange, Yahoo, iCloud, and IMAP.
Test Email in CI/CD with PowerShell
Test email delivery and content in CI/CD pipelines using PowerShell and Nylas CLI. GitHub Actions and Azure DevOps examples with Pester assertions on email content.
E2E Email Testing with Playwright
Test password reset, invitation, and verification emails end-to-end. Poll with Nylas CLI, verify content in Playwright, and click links. No Gmail config needed.
Run nylas inbound create --help for full help output.