Skip to content

Commit

Permalink
Fix runtime
Browse files Browse the repository at this point in the history
  • Loading branch information
alxlion committed Dec 25, 2024
1 parent c636439 commit 94888af
Showing 1 changed file with 7 additions and 9 deletions.
16 changes: 7 additions & 9 deletions config/runtime.exs
Original file line number Diff line number Diff line change
Expand Up @@ -189,17 +189,15 @@ case mail_transport do
"smtp" ->
config :claper, Claper.Mailer,
adapter: Swoosh.Adapters.SMTP,
relay: "pixel.mxrouting.net",
username: "test@wanadance.com",
password: "Alex1001",
ssl: false,
relay: smtp_relay,
username: smtp_username,
password: smtp_password,
ssl: smtp_ssl,
# always, never, if_available
tls: :if_available,
tls: smtp_tls,
# always, never, if_available
auth: :always,
port: 587,
retries: 2,
no_mx_lookups: true
auth: smtp_auth,
port: smtp_port

config :swoosh, :api_client, false

Expand Down

0 comments on commit 94888af

Please sign in to comment.