In one of our production apps, we currently send emails directly from the main process models using the Send Email smart service.
As volume is increasing, we’re starting to rethink whether this is the best long-term approach.
For those who’ve worked on larger implementations — do you keep email logic in the main process, or move it to a reusable subprocess? Also curious how you’re handling retries and basic monitoring in production.
Just trying to sense-check our design as the app scales.
Discussion posts and replies are publicly visible
Keep email logic in a reusable utility subprocess with standard inputs/outputs, and keep main process models focused on core business flow. Main process triggers email subprocess asynchronously, subprocess handles retries and logs failures separately.