Learn how to send your first email using Phoenix and the Resend Elixir SDK.
resend
mix.exs
def deps do [ {:resend, "~> 0.4.0"} ] end
config :my_app, MyApp.Mailer, adapter: Resend.Swoosh.Adapter, api_key: System.fetch_env!("RESEND_API_KEY")
prod.exs
runtime.exs
config :my_app, MyApp.Mailer, adapter: Resend.Swoosh.Adapter
Was this page helpful?