acton-htmx 1.0.0-beta.7

Opinionated Rust web framework for HTMX applications
Documentation
1
2
3
4
5
6
7
8
9
10
//! Email backend implementations
//!
//! This module provides different backend implementations for sending emails:
//! - **SMTP**: Send emails via SMTP server (production)
//! - **AWS SES**: Send emails via Amazon SES (production, AWS environments)
//! - **Console**: Print emails to console (development)

pub mod smtp;
pub mod aws_ses;
pub mod console;