Files
lettre/website/content/README.md
Alexis Mousset 0cf018a85e feat(transport): Use md-5 and hmac instead of rust-crypto
RustCrypto is not supported anymore, and this avoids
compiling useless code.
2018-05-03 23:47:16 +02:00

578 B

Introduction

Lettre is an email library that allows creating and sending messages. It provides:

  • An easy to use email builder
  • Pluggable email transports
  • Unicode support (for emails and transports, including for sender et recipient addresses when compatible)
  • Secure defaults (emails are only sent encrypted by default)

The lettre_email crate allows you to compose messages, and the lettre provide transports to send them.

Lettre requires Rust 1.20 or newer. Add the following to your Cargo.toml:

[dependencies]
lettre = "0.8"
lettre_email = "0.8"