pub trait EmailProvider {
    fn send_email(&self, address: &str, contents: &str) -> Result<(), EmailError>;
}

Required Methods§

Sends an email to and from the specified address.

Implementors§