polymail 0.1.6

Unified email sending interface for multiple providers
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#[cfg(feature = "config")]
mod config;
mod email;
mod error;
mod fallback;
mod mailer;
pub mod provider;

#[cfg(feature = "config")]
pub use config::ProviderConfig;
pub use email::{Address, Attachment, Body, Email};
pub use error::SendError;
pub use fallback::FallbackMailer;
pub use mailer::{BatchItemResult, Mailer, SendResult};