Skip to main content

max / makenotwork

634 B · 16 lines History Blame Raw
1 //! Email template methods for composing and sending transactional emails.
2 //!
3 //! Each submodule groups related email types and implements template methods
4 //! on `EmailClient`. All methods format a specific email type and delegate
5 //! to the sending infrastructure in `super::EmailClient`.
6 //!
7 //! - `auth` — password reset, verification, login links, lockout, deletion
8 //! - `monetization` — purchases, subscriptions, Fan+ programme
9 //! - `notifications` — creator activity, platform notices, issue tracking
10 //! - `onboarding` — drip sequence for new signups
11
12 mod auth;
13 mod monetization;
14 mod notifications;
15 mod onboarding;
16