From e5575c42f46dc0480a14fdded1b6c37f59488dba Mon Sep 17 00:00:00 2001 From: Dan Barber Date: Sun, 9 Sep 2018 19:40:19 -0400 Subject: [PATCH] Use Mailgun adapter in production --- config/prod.exs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/config/prod.exs b/config/prod.exs index 9a97cca..3f8f4eb 100644 --- a/config/prod.exs +++ b/config/prod.exs @@ -10,6 +10,9 @@ config :chess, ChessWeb.Endpoint, url: [host: "localhost", port: {:system, "PORT"}], version: Application.spec(:chess, :vsn) +config :chess, Chess.Mailer, + adapter: Bamboo.MailgunAdapter + config :chess, Chess.Repo, adapter: Ecto.Adapters.Postgres, url: "${DATABASE_URL}",