We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ad31d6b commit 856030cCopy full SHA for 856030c
docs/content/doc/usage/email-setup.en-us.md
@@ -45,3 +45,19 @@ PASSWD = `password`
45
- To send a test email to validate the settings, go to Gitea > Site Administration > Configuration > SMTP Mailer Configuration.
46
47
For the full list of options check the [Config Cheat Sheet]({{< relref "doc/advanced/config-cheat-sheet.en-us.md" >}})
48
+
49
+### Gmail
50
51
+The following configuration should work with GMail's SMTP server:
52
53
+```ini
54
+[mailer]
55
+ENABLED = true
56
+HOST = smtp.gmail.com:465
57
+FROM = example@gmail.com
58
+USER = example@gmail.com
59
+PASSWD = ***
60
+MAILER_TYPE = smtp
61
+IS_TLS_ENABLED = true
62
+HELO_HOSTNAME = example.com
63
+```
0 commit comments