catapulte-adapter-smtp 0.1.0

SMTP adapter for catapulte - implements EmailSender using Lettre
Documentation
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;