[][src]Struct melib::smtp::SmtpConnection

pub struct SmtpConnection {
    stream: AsyncWrapper<Connection>,
    read_buffer: String,
    server_conf: SmtpServerConf,
}

SMTP client session object.

See module-wide documentation.

Fields

stream: AsyncWrapper<Connection>read_buffer: Stringserver_conf: SmtpServerConf

Implementations

impl SmtpConnection[src]

pub async fn new_connection(__arg0: SmtpServerConf) -> Result<Self>[src]

Performs connection and if configured: TLS negotiation and SMTP AUTH

fn set_extension_support(&mut self, reply: Reply<'_>)[src]

pub async fn read_lines<'r, '_, '_>(
    &'_ mut self,
    ret: &'r mut String,
    expected_reply_code: Option<(ReplyCode, &'_ [ReplyCode])>
) -> Result<Reply<'r>>
[src]

pub async fn send_command<'_, '_, '_>(
    &'_ mut self,
    command: &'_ [&'_ [u8]]
) -> Result<()>
[src]

pub async fn mail_transaction<'_, '_, '_>(
    &'_ mut self,
    mail: &'_ str,
    tos: Option<&'_ [Address]>
) -> Result<()>
[src]

Sends mail

Trait Implementations

impl Debug for SmtpConnection[src]

Auto Trait Implementations

impl RefUnwindSafe for SmtpConnection

impl Send for SmtpConnection

impl Sync for SmtpConnection

impl Unpin for SmtpConnection

impl UnwindSafe for SmtpConnection

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>, 

impl<T> WithSubscriber for T[src]