noem 0.1.0

Resend mail fetched by different strategies to different places
Documentation
1
2
3
4
5
6
7
8
9
use futures::Future;

pub mod strategies;

pub trait Resender {
    type Error: std::error::Error;
    type Input;
    fn send(&self, input: Self::Input) -> impl Future<Output = Result<(), Self::Error>>;
}