Files
lettre/website/src
Alexis Mousset 7f22a98f2f feat(builder): Improve Message representation
* Remove bytes dependency and rely directly on bytes vec
* Allow encoding non-utf-8 strings
* Use Vec<u8> instead of Display for email formatting
2020-04-28 23:45:03 +02:00
..
2019-12-23 11:02:43 +00:00

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)

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

[dependencies]
lettre = "0.10"