[][src]Struct lettre::transport::smtp::SmtpTransport

pub struct SmtpTransport { /* fields omitted */ }

Implementations

impl SmtpTransport[src]

pub fn builder<T: Into<String>>(server: T) -> SmtpTransportBuilder[src]

Creates a new SMTP client

Defaults are:

  • No authentication
  • A 60 seconds timeout for smtp commands
  • Port 587

Consider using [SmtpTransport::new] instead, if possible.

pub fn relay(relay: &str) -> Result<SmtpTransportBuilder, Error>[src]

Simple and secure transport, should be used when possible. Creates an encrypted transport over submissions port, using the provided domain to validate TLS certificates.

pub fn unencrypted_localhost() -> SmtpTransport[src]

Creates a new local SMTP client to port 25

Shortcut for local unencrypted relay (typical local email daemon that will handle relaying)

Trait Implementations

impl Clone for SmtpTransport[src]

impl Transport for SmtpTransport[src]

type Ok = Response

Result types for the transport

type Error = Error

fn send_raw(
    &self,
    envelope: &Envelope,
    email: &[u8]
) -> Result<Self::Ok, Self::Error>
[src]

Sends an email

Auto Trait Implementations

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, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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>,