Swoosh v0.10.0 Swoosh.Adapters.SMTP View Source

An adapter that sends email using the SMTP protocol.

Underneath this adapter uses the gen_smtp library.

Example

# mix.exs
def application do
  [applications: [:swoosh, :gen_smtp]]
end

# config/config.exs
config :sample, Sample.Mailer,
  adapter: Swoosh.Adapters.SMTP,
  relay: "smtp.avengers.com",
  username: "tonystark",
  password: "ilovepepperpotts",
  tls: :always,
  auth: :always,
  dkim: [
    s: "default", d: "domain.com",
    private_key: {:pem_plain, File.read!("priv/keys/domain.private")}
  ]

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

Link to this section Summary

Functions

Delivers an email with the given config

Link to this section Functions

Delivers an email with the given config.

Callback implementation for Swoosh.Adapter.deliver/2.