Current section
Files
Jump to
Current section
Files
lib/unsent.ex
defmodule Unsent do
@moduledoc """
Official Elixir SDK for the Unsent API.
Send transactional emails, manage contacts, campaigns, and domains.
"""
alias Unsent.Client
@doc """
Creates a new Unsent client.
## Examples
iex> client = Unsent.new("us_xxx")
%Unsent.Client{...}
"""
def new(api_key, opts \\ []) do
Client.new(api_key, opts)
end
end