pub fn configure<M: Mailer + 'static>(mailer: M)Expand description
Manually configure the global mailer.
Sets a single global mailer used by deliver().
Can be called multiple times - later calls replace the previous mailer.
ⓘ
use missive::{configure, providers::LocalMailer};
configure(LocalMailer::new());