Lettre provides the following features:
Lettre does not provide (for now):
This library requires Rust 1.20 or newer.
To use this library, add the following to your Cargo.toml
:
toml
[dependencies]
lettre = "0.9"
lettre_email = "0.9"
```rust,norun use lettre::{EmailTransport, SmtpTransport}; use lettreemail::EmailBuilder; use std::path::Path;
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::builderunencryptedlocalhost().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()); ```
The lettre
tests require an open mail server listening locally on port 2525 and the sendmail
command.
Anyone who interacts with Lettre in any space, including but not limited to this GitHub repository, must follow our code of conduct.
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.