Swoosh v0.25.0 Swoosh.Adapters.Sendgrid View Source
An adapter that sends email using the Sendgrid API.
For reference: Sendgrid API docs
Example
# config/config.exs
config :sample, Sample.Mailer,
adapter: Swoosh.Adapters.Sendgrid,
api_key: "my-api-key"
# lib/sample/mailer.ex
defmodule Sample.Mailer do
use Swoosh.Mailer, otp_app: :sample
end
Sandbox mode
For sandbox mode,
use put_provider_option/3
:
iex> new() |> put_provider_option(:mail_settings, %{sandbox_mode: %{enable: true}})
Link to this section Summary
Functions
Callback implementation for Swoosh.Adapter.deliver/2
.
Callback implementation for Swoosh.Adapter.validate_config/1
.
Callback implementation for Swoosh.Adapter.validate_dependency/0
.
Link to this section Functions
Callback implementation for Swoosh.Adapter.deliver/2
.
Callback implementation for Swoosh.Adapter.validate_config/1
.
Callback implementation for Swoosh.Adapter.validate_dependency/0
.