Merge branch 'mailer-mua' into 'develop'

Change mailer example to use Mua

See merge request pleroma/pleroma!4392
This commit is contained in:
feld 2025-08-01 21:18:15 +00:00
commit 88d0a36d01
2 changed files with 4 additions and 5 deletions

View file

@ -0,0 +1 @@
Change SMTP example to use the Mua adapter that works with OTP>25

View file

@ -733,13 +733,11 @@ An example for SMTP adapter:
```elixir
config :pleroma, Pleroma.Emails.Mailer,
enabled: true,
adapter: Swoosh.Adapters.SMTP,
adapter: Swoosh.Adapters.Mua,
relay: "smtp.gmail.com",
username: "YOUR_USERNAME@gmail.com",
password: "YOUR_SMTP_PASSWORD",
auth: [username: "YOUR_USERNAME@gmail.com", password: "YOUR_SMTP_PASSWORD"],
port: 465,
ssl: true,
auth: :always
protocol: :ssl
```
An example for Mua adapter: