Skip to main content

rustack_ses_core/
lib.rs

1//! SES business logic for `Rustack`.
2//!
3//! Implements email sending (capture), identity management, template management,
4//! configuration sets, receipt rules, and the email retrospection endpoint.
5//! No actual email delivery -- all emails are captured in memory for test
6//! inspection via `/_aws/ses`.
7
8pub mod config;
9pub mod config_set;
10pub mod handler;
11pub mod identity;
12pub mod provider;
13pub mod receipt_rule;
14pub mod retrospection;
15pub mod statistics;
16pub mod template;
17pub mod validation;