# `Swoosh.Adapters.MailPace`
[🔗](https://github.com/swoosh/swoosh/blob/v1.25.2/lib/swoosh/adapters/mail_pace.ex#L1)

An adapter that sends email using the MailPace API.

For reference: [MailPace API docs](https://docs.mailpace.com/reference/overview/)

**This adapter requires an API Client.** Swoosh comes with Hackney, Finch and Req out of the box.
See the [installation section](https://hexdocs.pm/swoosh/Swoosh.html#module-installation)
for details.

## Example

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

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

# `deliver`

# `validate_config`

# `validate_dependency`

---

*Consult [api-reference.md](api-reference.md) for complete listing*
