Skip to content
Snippets Groups Projects
Commit fcd5dd25 authored by rinpatch's avatar rinpatch
Browse files

Merge branch 'bugfix/smtp-config-examples' into 'develop'

Fix SMTP mailer example

See merge request pleroma/pleroma!2091
parents ee0c4083 b55f2563
No related branches found
No related tags found
No related merge requests found
......@@ -453,6 +453,7 @@ An example for Sendgrid adapter:
```elixir
config :pleroma, Pleroma.Emails.Mailer,
enabled: true,
adapter: Swoosh.Adapters.Sendgrid,
api_key: "YOUR_API_KEY"
```
......@@ -461,13 +462,13 @@ An example for SMTP adapter:
```elixir
config :pleroma, Pleroma.Emails.Mailer,
enabled: true,
adapter: Swoosh.Adapters.SMTP,
relay: "smtp.gmail.com",
username: "YOUR_USERNAME@gmail.com",
password: "YOUR_SMTP_PASSWORD",
port: 465,
ssl: true,
tls: :always,
auth: :always
```
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment