130
Modern email development workflow: React Email + Brew + GitHub Actions
api_andreaDeveloper
Our email development workflow was a mess until we standardized on this stack: React Email for templates, Brew for sending, and GitHub Actions for CI/CD.
The workflow
- Developer creates/modifies a template in the
emails/directory - PR triggers GitHub Action that renders all templates and runs visual regression tests
- Preview deploy goes up automatically with rendered email previews
- After merge, templates are deployed to Brew via API
Key tools
- React Email — Type-safe template development
- Brew SDK — Template deployment and sending
- Playwright — Visual regression testing
- GitHub Actions — CI/CD orchestration
This workflow eliminated the "it looks different in Outlook" surprises. Every template change is tested across clients before it reaches production.
#workflow#cicd#react-email#brew
130