15 releases (8 breaking)

0.10.0 Dec 3, 2024
0.9.2 Oct 14, 2024
0.9.1 Apr 1, 2024
0.9.0 Mar 12, 2023
0.1.0 Nov 11, 2019

#36 in Email

Download history 1430/week @ 2024-08-19 1824/week @ 2024-08-26 1250/week @ 2024-09-02 1456/week @ 2024-09-09 1545/week @ 2024-09-16 1305/week @ 2024-09-23 1902/week @ 2024-09-30 2248/week @ 2024-10-07 2230/week @ 2024-10-14 1857/week @ 2024-10-21 1983/week @ 2024-10-28 1843/week @ 2024-11-04 1888/week @ 2024-11-11 2001/week @ 2024-11-18 2877/week @ 2024-11-25 2781/week @ 2024-12-02

9,867 downloads per month
Used in 9 crates (5 directly)

MIT/Apache

78KB
2K SLoC

async-smtp

Async implementation of SMTP


Based on the great lettre library.

Example

pub type Error = Box<dyn std::error::Error + Send + Sync>;
pub type Result<T> = std::result::Result<T, Error>;

use async_smtp::{Envelope, SendableEmail, SmtpClient, SmtpTransport};

async fn smtp_transport_simple() -> Result<()> {
    let stream = TcpStream::connect("127.0.0.1:2525").await?;
    let client = SmtpClient::new();
    let mut transport = SmtpTransport::new(client, stream).await?;

    let email = SendableEmail::new(
        Envelope::new(
            Some("user@localhost".parse().unwrap()),
            vec!["root@localhost".parse().unwrap()],
        )?,
        "Hello world",
    );
    transport.send(email).await?;

    Ok(())
}

License

Licensed under either of

Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.

Dependencies

~2–13MB
~163K SLoC