@react-email/ui@6.5.0
Klavis-AI/klavis@react-email/ui@6.5.0May 27, 2026by github-actions[bot]
AI Summary
Adds CLI options to filter email client compatibility warnings, allowing teams to target specific clients like Outlook or Apple Mail to reduce noise.
Key Highlights
- New `--clients` CLI flag for email dev.
- New `COMPATIBILITY_EMAIL_CLIENTS` environment variable.
- Allows skipping warnings for specific clients (e.g., outlook, apple-mail).
New Features
- Filterable email client compatibility warnings via CLI or environment variable.
Full Release Notes
### Minor Changes * 3875d2a: add a `--clients` option to `email dev` and a `COMPATIBILITY_EMAIL_CLIENTS` environment variable to narrow which email clients trigger compatibility warnings. By default the preview still warns for `gmail`, `apple-mail`, `outlook`, and `yahoo`. Teams that only target one or two clients can now skip the noise: `email dev --clients outlook,apple-mail`. The CLI flag wins over the env var; an empty or fully-invalid list falls back to the defaults so warnings can't be silently switched off. Builds on #2797 by @ReemX.