Cheatsheet: add Mua mail adapter config
This commit is contained in:
parent
e10db52e0a
commit
1de5208a9e
1 changed files with 15 additions and 0 deletions
|
@ -742,6 +742,21 @@ config :pleroma, Pleroma.Emails.Mailer,
|
||||||
auth: :always
|
auth: :always
|
||||||
```
|
```
|
||||||
|
|
||||||
|
An example for Mua adapter:
|
||||||
|
|
||||||
|
```elixir
|
||||||
|
config :pleroma, Pleroma.Emails.Mailer,
|
||||||
|
enabled: true,
|
||||||
|
adapter: Swoosh.Adapters.Mua,
|
||||||
|
relay: "mail.example.com",
|
||||||
|
port: 465,
|
||||||
|
auth: [
|
||||||
|
username: "YOUR_USERNAME@domain.tld",
|
||||||
|
password: "YOUR_SMTP_PASSWORD"
|
||||||
|
],
|
||||||
|
protocol: :ssl
|
||||||
|
```
|
||||||
|
|
||||||
### :email_notifications
|
### :email_notifications
|
||||||
|
|
||||||
Email notifications settings.
|
Email notifications settings.
|
||||||
|
|
Loading…
Reference in a new issue