Current section
Files
Jump to
Current section
Files
lib/mailman/testing_adapter.ex
defmodule Mailman.TestingAdapter do
@moduledoc "Implementation of the testing SMTP adapter"
def deliver(config, _email, message) do
if config.store_deliveries do
Mailman.TestServer.register_delivery message
end
{ :ok, message }
end
end