You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Describe the bug
When self-hosting Papercups with docker compose, the SMTP mailer is broken.
To Reproduce
Steps to reproduce the behavior:
Open iex
import Swoosh.Email
Try to send an email like new() |> from("[email protected]") |> to("[email protected]") |> subject("Hi there") |> text_body("Testing SMTP integration") |> ChatApi.Mailers.deliver(). You will see the following error:
Describe the bug
When self-hosting Papercups with docker compose, the SMTP mailer is broken.
To Reproduce
Steps to reproduce the behavior:
import Swoosh.Email
new() |> from("[email protected]") |> to("[email protected]") |> subject("Hi there") |> text_body("Testing SMTP integration") |> ChatApi.Mailers.deliver()
. You will see the following error:Expected behavior
Sending the email works.
Additional context
I believe this is caused by this bug: gen-smtp/gen_smtp#250
If that's the case, using a more recent version of Elixir/OTP in the Docker image would fix it, as would updating gen_smtp.
The text was updated successfully, but these errors were encountered: