1 2 3 4 5 6 7 8 9
//! SMTP adapter for catapulte //! //! This crate implements the `EmailSender` port using Lettre for SMTP delivery. mod config; mod sender; pub use config::SmtpConfig; pub use sender::SmtpSender;