From 3683d122baaa9bede82ef18baf533da1dacc2655 Mon Sep 17 00:00:00 2001 From: RotationMatrix <52428419+RotationMatrix@users.noreply.github.com> Date: Sun, 22 Nov 2020 11:58:33 -0500 Subject: [PATCH] Update examples/README.md --- examples/README.md | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/examples/README.md b/examples/README.md index 02e4b96..b0a98ae 100644 --- a/examples/README.md +++ b/examples/README.md @@ -3,15 +3,17 @@ This folder contains examples showing how to use lettre in your own projects. ## Examples -- [file_html.rs] - Create an HTML email. - [smtp.rs] - Send an email using a local SMTP daemon on port 25 as a relay. - [smtp_tls.rs] - Send an email over SMTP encrypted with TLS and authenticating with username and password. - [smtp_starttls.rs] - Send an email over SMTP with STARTTLS and authenticating with username and password. - [smtp_selfsigned.rs] - Send an email over SMTP encrypted with TLS using a self-signed certificate and authenticating with username and password. - The [smtp_tls.rs] and [smtp_starttls.rs] examples also feature `async`hronous implementations powered by [Tokio](https://tokio.rs/). These files are prefixed with `tokio02_` or `tokio03_`. +- [basic_html.rs] - Create an HTML email. +- [maud_html.rs] - Create an HTML email using a [maud](https://github.com/lambda-fairy/maud) template. -[file_html.rs]: ./file_html.rs +[basic_html.rs]: ./basic_html.rs +[maud_html.rs]: ./maud_html.rs [smtp.rs]: ./smtp.rs [smtp_tls.rs]: ./smtp_tls.rs [smtp_starttls.rs]: ./smtp_starttls.rs