View Source Swoosh.Adapters.Dyn (Swoosh v1.8.1)

An adapter that sends email using the Dyn API.

For reference: Dyn API docs

example

Example

# config/config.exs
config :sample, Sample.Mailer,
  adapter: Swoosh.Adapters.Dyn,
  api_key: "my-api-key",

# lib/sample/mailer.ex
defmodule Sample.Mailer do
  use Swoosh.Mailer, otp_app: :sample
end

sending-sample-email

Sending sample email

import Swoosh.Email

new()
|> from({"Christine", "christine@example.com"})
|> to({"constance", "constance@example.com"})
|> to("ming_fleetfoot@example.com")
|> bcc([
  {"Dr. Xander Bravestone", "dr.xander_bravestone@example.com"},
  {"Prof. Sheldon Oberon", "prof.sheldon.oberon@example.com"}
])
|> subject("Hello, People!")
|> html_body("<h1>Hello</h1>")
|> text_body("Hello")

Link to this section Summary

Link to this section Functions

Callback implementation for Swoosh.Adapter.validate_config/1.

Callback implementation for Swoosh.Adapter.validate_dependency/0.