Alexis Mousset 53aa5b4df6 Replace email builder by a new implementation (#393)
* Update dependencies (#386)

* Update dependencies and set MSRV to 1.40

* update hyperx

* Use display instead of description for errors

* Make hostname an optional feature

* Envelope from headers

* Update hyperx to 1.0

* rename builder to message

* Cleanup and make Transport send Messages

* Update rustls from 0.16 to 0.17

* Move transports into a common folder

* Merge imports from same crate

* Add message creation example to the site

* Hide "extern crate" in doc examples

* Add References and In-Reply-To methods

* Add message-id header

* Add blog posts and improve doc examples
2020-04-18 21:10:03 +00:00
2019-12-18 13:47:09 +01:00

lettre

Lettre is a mailer library for Rust.

Coverage Status

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

Lettre does not provide (for now):

  • Async support
  • Email parsing

Example

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

[dependencies]
lettre = "0.10"
extern crate lettre;

use lettre::{SmtpClient, Transport, Message};
use std::convert::TryInto;

fn main() {
    let email = Message::builder()
        // Addresses can be specified by the tuple (email, alias)
        .to(("user@example.org", "Firstname Lastname").try_into().unwrap())
        // ... or by an address only
        .from("user@example.com".parse().unwrap())
        .subject("Hi, Hello world")
        .body("Hello world.")
        //.attachment_from_file(Path::new("Cargo.toml"), None, &TEXT_PLAIN)
        // FIXME add back attachment example
        .build()
        .unwrap();

    // Open a local connection on port 25
    let mut mailer = SmtpClient::new_unencrypted_localhost().unwrap().transport();
    // 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.

The builder comes from emailmessage-rs by Kayo, under MIT license.

See LICENSE for details.

Description
Languages
Rust 100%