Struct lettre::AsyncSendmailTransport
source · pub struct AsyncSendmailTransport<E: Executor> { /* private fields */ }
Available on crate feature
sendmail-transport
and (crate features tokio1
or async-std1
) only.Expand description
Asynchronously sends emails using the sendmail
command
Implementations§
source§impl<E> AsyncSendmailTransport<E>where
E: Executor,
impl<E> AsyncSendmailTransport<E>where
E: Executor,
sourcepub fn new() -> Self
pub fn new() -> Self
Creates a new transport with the sendmail
command
Note: This uses the sendmail
command in the current PATH
. To use another command,
use AsyncSendmailTransport::new_with_command.
sourcepub fn new_with_command<S: Into<OsString>>(command: S) -> Self
pub fn new_with_command<S: Into<OsString>>(command: S) -> Self
Creates a new transport to the given sendmail command
Trait Implementations§
source§impl AsyncTransport for AsyncSendmailTransport<AsyncStd1Executor>
impl AsyncTransport for AsyncSendmailTransport<AsyncStd1Executor>
source§type Ok = ()
type Ok = ()
Available on crate features
tokio1
or async-std1
only.Response produced by the Transport
source§type Error = Error
type Error = Error
Available on crate features
tokio1
or async-std1
only.Error produced by the Transport
source§fn send_raw<'life0, 'life1, 'life2, 'async_trait>(
&'life0 self,
envelope: &'life1 Envelope,
email: &'life2 [u8],
) -> Pin<Box<dyn Future<Output = Result<Self::Ok, Self::Error>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait,
'life2: 'async_trait,
fn send_raw<'life0, 'life1, 'life2, 'async_trait>(
&'life0 self,
envelope: &'life1 Envelope,
email: &'life2 [u8],
) -> Pin<Box<dyn Future<Output = Result<Self::Ok, Self::Error>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait,
'life2: 'async_trait,
Available on crate features
tokio1
or async-std1
only.source§fn send<'life0, 'async_trait>(
&'life0 self,
message: Message,
) -> Pin<Box<dyn Future<Output = Result<Self::Ok, Self::Error>> + Send + 'async_trait>>where
Self: Sync + 'async_trait,
'life0: 'async_trait,
fn send<'life0, 'async_trait>(
&'life0 self,
message: Message,
) -> Pin<Box<dyn Future<Output = Result<Self::Ok, Self::Error>> + Send + 'async_trait>>where
Self: Sync + 'async_trait,
'life0: 'async_trait,
Available on (crate features
tokio1
or async-std1
) and crate feature builder
only.Sends the email
source§impl AsyncTransport for AsyncSendmailTransport<Tokio1Executor>
impl AsyncTransport for AsyncSendmailTransport<Tokio1Executor>
source§type Ok = ()
type Ok = ()
Available on crate features
tokio1
or async-std1
only.Response produced by the Transport
source§type Error = Error
type Error = Error
Available on crate features
tokio1
or async-std1
only.Error produced by the Transport
source§fn send_raw<'life0, 'life1, 'life2, 'async_trait>(
&'life0 self,
envelope: &'life1 Envelope,
email: &'life2 [u8],
) -> Pin<Box<dyn Future<Output = Result<Self::Ok, Self::Error>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait,
'life2: 'async_trait,
fn send_raw<'life0, 'life1, 'life2, 'async_trait>(
&'life0 self,
envelope: &'life1 Envelope,
email: &'life2 [u8],
) -> Pin<Box<dyn Future<Output = Result<Self::Ok, Self::Error>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait,
'life2: 'async_trait,
Available on crate features
tokio1
or async-std1
only.source§fn send<'life0, 'async_trait>(
&'life0 self,
message: Message,
) -> Pin<Box<dyn Future<Output = Result<Self::Ok, Self::Error>> + Send + 'async_trait>>where
Self: Sync + 'async_trait,
'life0: 'async_trait,
fn send<'life0, 'async_trait>(
&'life0 self,
message: Message,
) -> Pin<Box<dyn Future<Output = Result<Self::Ok, Self::Error>> + Send + 'async_trait>>where
Self: Sync + 'async_trait,
'life0: 'async_trait,
Available on (crate features
tokio1
or async-std1
) and crate feature builder
only.Sends the email
source§impl<E: Clone + Executor> Clone for AsyncSendmailTransport<E>
impl<E: Clone + Executor> Clone for AsyncSendmailTransport<E>
source§fn clone(&self) -> AsyncSendmailTransport<E>
fn clone(&self) -> AsyncSendmailTransport<E>
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl<E> Default for AsyncSendmailTransport<E>where
E: Executor,
impl<E> Default for AsyncSendmailTransport<E>where
E: Executor,
source§impl<'de, E: Executor> Deserialize<'de> for AsyncSendmailTransport<E>
impl<'de, E: Executor> Deserialize<'de> for AsyncSendmailTransport<E>
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl<E> Freeze for AsyncSendmailTransport<E>
impl<E> RefUnwindSafe for AsyncSendmailTransport<E>where
E: RefUnwindSafe,
impl<E> Send for AsyncSendmailTransport<E>
impl<E> Sync for AsyncSendmailTransport<E>
impl<E> Unpin for AsyncSendmailTransport<E>where
E: Unpin,
impl<E> UnwindSafe for AsyncSendmailTransport<E>where
E: 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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)