pub struct SmtpMailSender<F>{ /* private fields */ }Expand description
SMTP sender that reads runtime settings immediately before each delivery.
Implementations§
Source§impl<F> SmtpMailSender<F>
impl<F> SmtpMailSender<F>
Sourcepub fn new(settings_provider: F) -> Self
pub fn new(settings_provider: F) -> Self
Creates an SMTP sender using the default send timeout.
Sourcepub fn with_timeout(settings_provider: F, timeout: Duration) -> Self
pub fn with_timeout(settings_provider: F, timeout: Duration) -> Self
Creates an SMTP sender with a custom send timeout.
Trait Implementations§
Source§impl<F> MailSender for SmtpMailSender<F>
impl<F> MailSender for SmtpMailSender<F>
Source§fn send<'life0, 'async_trait>(
&'life0 self,
message: MailMessage,
) -> Pin<Box<dyn Future<Output = MailSendResult<()>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
fn send<'life0, 'async_trait>(
&'life0 self,
message: MailMessage,
) -> Pin<Box<dyn Future<Output = MailSendResult<()>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
Sends a fully rendered message.
Auto Trait Implementations§
impl<F> Freeze for SmtpMailSender<F>where
F: Freeze,
impl<F> RefUnwindSafe for SmtpMailSender<F>where
F: RefUnwindSafe,
impl<F> Send for SmtpMailSender<F>
impl<F> Sync for SmtpMailSender<F>
impl<F> Unpin for SmtpMailSender<F>where
F: Unpin,
impl<F> UnsafeUnpin for SmtpMailSender<F>where
F: UnsafeUnpin,
impl<F> UnwindSafe for SmtpMailSender<F>where
F: UnwindSafe,
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more