10 releases

Uses old Rust 2015

0.9.4 Apr 21, 2020
0.9.2 Jun 11, 2019
0.9.0 Mar 17, 2019
0.8.3 Nov 2, 2018
0.7.0 Oct 8, 2017

#177 in Email

Download history 2295/week @ 2023-11-26 2664/week @ 2023-12-03 2537/week @ 2023-12-10 2251/week @ 2023-12-17 1315/week @ 2023-12-24 659/week @ 2023-12-31 1978/week @ 2024-01-07 2013/week @ 2024-01-14 2053/week @ 2024-01-21 2770/week @ 2024-01-28 2327/week @ 2024-02-04 2340/week @ 2024-02-11 2082/week @ 2024-02-18 2093/week @ 2024-02-25 2915/week @ 2024-03-03 938/week @ 2024-03-10

8,145 downloads per month
Used in fewer than 13 crates

MIT license

510KB
11K SLoC

lettre

Lettre is a mailer library for Rust.

Build Status Build status codecov

Crate Docs Required Rust version MIT licensed

Gitter Average time to resolve an issue Percentage of issues still open

Useful links:


Features

Lettre provides the following features:

  • Multiple transport methods
  • Unicode support (for email content and addresses)
  • Secure delivery with SMTP using encryption and authentication
  • Easy email builders

Example

This library requires Rust 1.32 or newer. To use this library, add the following to your Cargo.toml:

[dependencies]
lettre = "0.9"
lettre_email = "0.9"
extern crate lettre;
extern crate lettre_email;

use lettre::{EmailTransport, SmtpTransport};
use lettre_email::EmailBuilder;
use std::path::Path;

fn main() {
    let email = EmailBuilder::new()
        // Addresses can be specified by the tuple (email, alias)
        .to(("user@example.org", "Firstname Lastname"))
        // ... or by an address only
        .from("user@example.com")
        .subject("Hi, Hello world")
        .text("Hello world.")
        .build()
        .unwrap();

    // Open a local connection on port 25
    let mut mailer = SmtpTransport::builder_unencrypted_localhost().unwrap()
                                                                   .build();
    // Send the email
    let result = mailer.send(&email);

    if result.is_ok() {
        println!("Email sent");
    } else {
        println!("Could not send email: {:?}", result);
    }

    assert!(result.is_ok());
}

Testing

The lettre tests require an open mail server listening locally on port 2525 and the sendmail command.

Code of conduct

Anyone who interacts with Lettre in any space, including but not limited to this GitHub repository, must follow our code of conduct.

License

This program is distributed under the terms of the MIT license.

See LICENSE for details.

Dependencies

~6MB
~88K SLoC