* Remove bytes dependency and rely directly on bytes vec * Allow encoding non-utf-8 strings * Use Vec<u8> instead of Display for email formatting
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"