Merge branch 'master' into master
This commit is contained in:
16
CHANGELOG.md
16
CHANGELOG.md
@@ -1,3 +1,19 @@
|
|||||||
|
### v0.6.1 (2016-10-19)
|
||||||
|
|
||||||
|
#### Features
|
||||||
|
|
||||||
|
* **documentation**
|
||||||
|
* #91: Build seperate docs for each release
|
||||||
|
* #96: Add complete documentation information to README
|
||||||
|
|
||||||
|
#### Bugfixes
|
||||||
|
|
||||||
|
* **email**
|
||||||
|
* #85: Use address-list for "To", "From" etc.
|
||||||
|
|
||||||
|
* **tests**
|
||||||
|
* #93: Force building tests before coverage computing
|
||||||
|
|
||||||
### v0.6.0 (2016-05-05)
|
### v0.6.0 (2016-05-05)
|
||||||
|
|
||||||
#### Features
|
#### Features
|
||||||
|
|||||||
@@ -1,12 +1,11 @@
|
|||||||
[package]
|
[package]
|
||||||
|
|
||||||
name = "lettre"
|
name = "lettre"
|
||||||
version = "0.6.0"
|
version = "0.6.1"
|
||||||
description = "Email client"
|
description = "Email client"
|
||||||
readme = "README.md"
|
readme = "README.md"
|
||||||
documentation = "http://lettre.github.io/lettre/"
|
documentation = "https://lettre.github.io/lettre/"
|
||||||
repository = "https://github.com/lettre/lettre"
|
repository = "https://github.com/lettre/lettre"
|
||||||
homepage = "http://lettre.github.io/"
|
|
||||||
license = "MIT"
|
license = "MIT"
|
||||||
authors = ["Alexis Mousset <contact@amousset.me>"]
|
authors = ["Alexis Mousset <contact@amousset.me>"]
|
||||||
keywords = ["email", "smtp", "mailer"]
|
keywords = ["email", "smtp", "mailer"]
|
||||||
|
|||||||
29
README.md
29
README.md
@@ -1,13 +1,34 @@
|
|||||||
# lettre
|
# lettre
|
||||||
[](https://travis-ci.org/lettre/lettre)
|
[](https://travis-ci.org/lettre/lettre)
|
||||||
[](https://ci.appveyor.com/project/amousset/lettre/branch/master)
|
[](https://ci.appveyor.com/project/amousset/lettre/branch/master)
|
||||||
[](https://coveralls.io/github/lettre/lettre?branch=master)
|
[](https://coveralls.io/github/lettre/lettre?branch=master)
|
||||||
[](https://crates.io/crates/lettre)
|
[](https://crates.io/crates/lettre)
|
||||||
[](./LICENSE)
|
[](./LICENSE)
|
||||||
[](https://gitter.im/lettre/lettre?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge)
|
[](https://gitter.im/lettre/lettre?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge)
|
||||||
|
|
||||||
This is an email library written in Rust.
|
This is an email library written in Rust.
|
||||||
See the [documentation](http://lettre.github.io/lettre) for more information.
|
|
||||||
|
## 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://lettre.github.io/lettre/)
|
||||||
|
* [v0.6.1](https://lettre.github.io/lettre/v0.6.1/lettre/)
|
||||||
|
* [v0.6.0](https://lettre.github.io/lettre/v0.6.0/lettre/)
|
||||||
|
* [v0.5.1](https://lettre.github.io/lettre/v0.5.1/lettre/)
|
||||||
|
|
||||||
|
Development version:
|
||||||
|
|
||||||
|
* [master](https://lettre.github.io/lettre/master/lettre/)
|
||||||
|
|
||||||
## Install
|
## Install
|
||||||
|
|
||||||
@@ -20,10 +41,10 @@ lettre = "0.6"
|
|||||||
|
|
||||||
## Testing
|
## Testing
|
||||||
|
|
||||||
The tests require a mail server listening locally on port 25.
|
The tests require an open mail server listening locally on port 25.
|
||||||
|
|
||||||
## License
|
## License
|
||||||
|
|
||||||
This program is distributed under the terms of the MIT license.
|
This program is distributed under the terms of the MIT license.
|
||||||
|
|
||||||
See LICENSE for details.
|
See [LICENSE](./LICENSE) for details.
|
||||||
|
|||||||
Reference in New Issue
Block a user