diff options
author | Raphael <mail@raphaelkabo.com> | 2025-05-28 18:08:59 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-05-28 18:08:59 +0100 |
commit | 666af8ca0a220f4aab1642c28e0008e373ab1689 (patch) | |
tree | df8dacfd279760f505d4b0f6dcf195a6a44a6a1b /config/config.example.toml | |
parent | bde9b408342f56833cf0a514488365189083f312 (diff) | |
parent | a5e2faf58ddd4793a5f7e3e284b023162d69cbb3 (diff) |
Merge pull request #210 from lowercasename/raphael/add-mailgun
Add Mailgun email service
Diffstat (limited to 'config/config.example.toml')
-rw-r--r-- | config/config.example.toml | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/config/config.example.toml b/config/config.example.toml index 32e2039..b3fed54 100644 --- a/config/config.example.toml +++ b/config/config.example.toml @@ -43,6 +43,16 @@ smtp_password = "" [sendgrid] api_key = "" +[mailgun] +# The base domain you have set up in Mailgun, for example 'mg.gath.io'. +domain = "" +# Your Mailgun sending API key for the domain you have set up. +api_key = "" +# This will be either https://api.mailgun.net (US) or https://api.eu.mailgun.net (EU) +# depending on the region in your domain settings. +api_url = "https://api.mailgun.net" + + # Links to static pages (for example a privacy policy) or an external community page, # which will be displayed in the footer. # If paths begin with a slash, they are treated as internal and will open the specified |