53 lines
1.6 KiB
Markdown
53 lines
1.6 KiB
Markdown
# lettre
|
|
[](https://travis-ci.org/lettre/lettre)
|
|
[](https://ci.appveyor.com/project/amousset/lettre/branch/master)
|
|
[](https://crates.io/crates/lettre)
|
|
[](https://docs.rs/lettre/)
|
|
[](./LICENSE)
|
|
[](https://gitter.im/lettre/lettre?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge)
|
|
|
|
This is an email library written in Rust.
|
|
|
|
## 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
|
|
|
|
## Documentation
|
|
|
|
Released versions:
|
|
|
|
* [latest](https://docs.rs/lettre/)
|
|
* [v0.6.2](https://docs.rs/lettre/0.6.2/lettre/)
|
|
* [v0.6.1](https://docs.rs/lettre/0.6.1/lettre/)
|
|
* [v0.6.0](https://docs.rs/lettre/0.6.0/lettre/)
|
|
* [v0.5.1](https://docs.rs/lettre/0.5.1/lettre/)
|
|
|
|
Development version:
|
|
|
|
* [master](https://lettre.github.io/lettre/master/lettre/)
|
|
|
|
## Install
|
|
|
|
This library requires rust 1.13 or newer.
|
|
To use this library, add the following to your `Cargo.toml`:
|
|
|
|
```toml
|
|
[dependencies]
|
|
lettre = "0.6"
|
|
```
|
|
|
|
## Testing
|
|
|
|
The tests require an open mail server listening locally on port 2525 and the `sendmail` command.
|
|
|
|
## License
|
|
|
|
This program is distributed under the terms of the MIT license.
|
|
|
|
See [LICENSE](./LICENSE) for details.
|