//! `daaki` SMTP client library.
//!
//! An async SMTP client (RFC 5321) built on tokio and rustls.
//! Handles connection, authentication, and message transmission. Does NOT
//! construct RFC 5322 messages — it sends raw bytes provided by the caller.
pub use ;
/// Re-export the canonical `Address` type from `daaki-message` so consumers
/// can use a single `Address` type across the IMAP, SMTP, and message crates
/// without manual field-by-field conversion .
pub use Address;
pub use Error;
pub use ;
/// Result type alias for SMTP operations.
pub type Result<T> = Result;