jamescarr

jamescarr

Debugging Swoosh.Adapters.Mailgun Requests

I just had a heck of a time getting mailgun working this evening, ultimately due to a typo on my mailgun domain in my config details. I thought I would share my journey for those who might run into the same issue.

Since I use direnv, I configured mailgun in config/runtime.exs to work in both dev and production environments:

   config :pento, Pento.Mailer,
     adapter: Swoosh.Adapters.Mailgun,
     api_key: System.get_env("MAILGUN_API_KEY"),
     domain: System.get_env("MAILGUN_DOMAIN"),
     base_url: "https://api.mailgun.net/v3",
     log_level: :debug

I likewise configured the appropriate settings for dev and production:

config :pento, Pento.Mailer, adapter: Swoosh.Adapters.Mailgun
config :swoosh, api_client: Swoosh.ApiClient.Finch, finch_name: Pento.Finch

And also added plug and multipart dependencies to mix.exs. I loaded up my application, reset a password and it reported success, redirecting me to the login screen. But mailgun reported no emails sent! Sadly, I am on a free plan so no logs visible on mailgun’s side. I looked through the console, but it looks like the log_level: :debug setting for the mailer had no effect, there were no logs beyond the ones indicating a success and redirect.

I decided to change up the default UserNotifier boilerplate to log an error and sure enough, I got an error log for {405, ""}.

    case Mailer.deliver(email) do
      {:ok, response} ->
        Logger.info("Email sent successfully: #{inspect(response)}")
        {:ok, email}
      {:error, reason} ->
        Logger.error("Failed to send email: #{inspect(reason)}")
        {:error, email}
    end

This was a start, but still missing a lot of detail. I went looking around to see if there was some way to log the lower level finch requests and after some reading came up with the following (not sure if this is correct):

defmodule Pento.Logger do
  require Logger

  def attach do
    :telemetry.attach(
      "finch-request-logger",
      [:finch, :request, :stop],
      &__MODULE__.handle_event/4,
      nil
    )
  end

  def handle_event(_event_name, measurements, metadata, _config) do
    {_, response} = metadata.result
    details = %{
      response_status: response.status,
      request_host: metadata.request.host,
      request_method: metadata.request.method,
      request_path: metadata.request.path,
      duration: measurements.duration
    }
    if response.status > 400 do
      Logger.error("#{inspect(details)}")
    else
      Logger.info("#{inspect(details)}")
    end

  end
end

Finally, I modified the generated PentoWeb.Telemetry module to attach the logger.

  @impl true
  def init(_arg) do
    children = [
      # Telemetry poller will execute the given period measurements
      # every 10_000ms. Learn more here: https://hexdocs.pm/telemetry_metrics
      {:telemetry_poller, measurements: periodic_measurements(), period: 10_000},
      {Finch, name: Pento.Logger}
    ]
    Pento.Logger.attach()

Thankfully, this logged out the details that showed me where I had gone wrong, can you spot it?

[error] %{request_host: "api.mailgun.net", request_path: "/v3/https://sandbox6b3be3f286c2409ab2d71b6fb9b1d52c.mailgun.org//messages", response_status: 405, request_method: "POST", duration: 340163917}

My question for you all going forward, is this the “right way” to log http requests from a third party? If I wanted to log all external requests made by finch in the future, it seems like this is the right approach?

Where Next?

Popular in Questions Top

Tee
can someone please explain to me how Enum.reduce works with maps
New
openscript
Hello! Sorry for this astonishing simple question, but I’m really stuck. I try to set up the intellij-elixir plugin, but I don’t know ho...
New
Harrisonl
We have an ECS cluster with 4 services, where each task joins a single cluster, via discovery ECS discovery service. Currently when I de...
New
Kagamiiiii
Student & New to elixir. Nice language. I want to convert a english character, e.g. “a”, which is stored in a variable, to it’s asci...
New
vac
Hi, I'm quite new in Elixir and I'm trying to format a string to a PEM format. I have the certificate value like MIIDBTCCAe2...... and ...
New
stefanluptak
Hello everybody, usually, I use a 29" ultra-wide monitor for VSCode which can easily accomodate explorer (files panel) + file with code ...
New
LegitStack
I’m trying to make a websocket server in Phoenix or raw Elixir. I heard about gun, I think I could use cowboy, but since I’m not that sma...
New
kostonstyle
Hi all I want to have a unix time, from the current time plus 1 hour. DateTime.now + 1 hour How to get it in elixir? Thanks
New
beno
I will often find my self writing things similar to: case some_value do nil -> something() "" -> something() _ -> someth...
New
Qqwy
Original source of discussion: This topic on the Pragmatic Programmers' Functional Web Development with Elixir, OTP, and Phoenix forum. ...
New

Other popular topics Top

JakeBecker
TL;DR: I’ve just released an implementation of Microsoft’s IDE-independent Language Server Protocol for Elixir. It adds language support ...
1140 51847 244
New
William
I would like to know that is there any online source for learning Phoenix Framework for building E-Commerce Store? Any advantage on build...
New
lessless
I believe there are people here who are dealing with CSV files import on the daily basis, and since Excel is a really popular tool there ...
New
bsollish-terakeet
Credo is smart enough to check for (something like) this: assert length(the_list) == 0 with this response: Checking if an enum is empt...
New
ycv005
I have followed this StackOverflow post to install the specific version of Erlang. And When I am running mix ecto.setup then getting fol...
New
ashish173
I am using Ecto timestamps with postgres, I can see the timestamps() use the :naive_dateime but for my use case I wanted to store the ti...
New
alice
Hey, Just curious what are the main benefits of Elixir compared to Clojure? When is Elixir more useful than Clojure and vice versa? Th...
New
vonH
When I run the Plug and I recompile I wind up having to use Ctrl C to quit iex and start again. Witht the help of rlwrap I can use the cu...
New
beno
I will often find my self writing things similar to: case some_value do nil -> something() "" -> something() _ -> someth...
New
skosch
To my knowledge, put_in, Map.update etc. all have the one limitation of not automatically creating intermediate keys when needed (for exa...
New

We're in Beta

About us Mission Statement