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

An adapter that wraps Swoosh.Adapters.AmazonSES to use credentials from ExAws.

You may prefer this adapter to Swoosh.Adapters.AmazonSES if you have already configured ExAws for your project and are using instance role credentials.

This allows you to use automatically managed, short-lived credentials, rather than provisioning a static access key / secret key pair.

See also:

IAM Roles for EC2 IAM roles for ECS tasks

example

Example

# config/config.exs
config :ex_aws,
  access_key_id: [{:system, "AWS_ACCESS_KEY_ID"}, :instance_role],
  secret_access_key: [{:system, "AWS_SECRET_ACCESS_KEY"}, :instance_role],
  region: "us-east-1"

config :sample, Sample.Mailer,
  adapter: Swoosh.Adapters.ExAwsAmazonSES

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

dependencies

Dependencies

In addition to the :gen_stmp dependency that the AmazonSES adapter requires, this adapter also depends on :ex_aws.

Ensure you have the dependencies added in your mix.exs file:

def deps do
  [
    {:swoosh, "~> 1.0"},
    {:gen_smtp, "~> 1.0"},
    {:ex_aws, "~> 2.1"},
    # Dependency of `:ex_aws`
    {:sweet_xml, "~> 0.6"}
  ]
end

See also:

Getting started with ExAws

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.