From 92aa016f76a534803142c46420c5f6f02ce0fe2e Mon Sep 17 00:00:00 2001
From: Artur Paiva <h0m3@users.noreply.github.com>
Date: Sun, 9 Mar 2025 14:07:38 +0000
Subject: [PATCH] Update email configuration

- Email field is now `email` instead of `mailers`
- Email login password is now `password` instead `passwd`
---
 en-US/advanced/configuration_cheat_sheet.md | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/en-US/advanced/configuration_cheat_sheet.md b/en-US/advanced/configuration_cheat_sheet.md
index 72580ab6..384c738a 100644
--- a/en-US/advanced/configuration_cheat_sheet.md
+++ b/en-US/advanced/configuration_cheat_sheet.md
@@ -165,7 +165,7 @@ Name|Description
 `SKIP_TLS_VERIFY`|Indicate whether to allow insecure certification or not.
 `PAGING_NUM`|Number of webhook history that are shown in one page.
 
-### Mailer (`mailer`)
+### Mailer (`email`)
 
 Name|Description
 ----|-----------
@@ -177,7 +177,7 @@ Name|Description
 `SKIP_VERIFY`|Do not verify the self-signed certificates.
 `FROM`|Mail from address, RFC 5322. This can be just an email address, or the `"Name" <email@example.com>` format.
 `USER`|Username of mailer (usually just your e-mail address).
-`PASSWD`|Password of mailer.
+`PASSWORD`|Password of mailer.
 `USE_PLAIN_TEXT`|Indicate whether to use `text/plain` as format of content or not.
 
 Note: Gogs supports only SMTP with STARTTLS.