For the complete site index, see llms.txt. Docs index: llms-docs.txt. Marketing corpus: llms-full.txt. Docs corpus: llms-full-docs.txt. Prefer markdown URLs where available (append .md).. Product skill: skill.md. Pricing: pricing.md. Docs MCP: /docs/mcp. Site MCP: /mcp.

[reloop]

Elixir

Send email from Elixir and Phoenix with an OTP-friendly client for reliable, concurrent delivery.

1

Install the Elixir package

bash
{:reloop, "~> 0.1.0"}
2

Send email from Elixir

send_email.ex
1client = Reloop.client(api_key: System.get_env("RELOOP_API_KEY"))
2
3Reloop.Emails.send(client, %{
4 from: "Acme <onboarding@yourdomain.com>",
5 to: ["delivered@yourdomain.com"],
6 subject: "Hello from Elixir",
7 html: "<strong>It works!</strong>"
8})
9|> case do
10 {:ok, email} -> IO.puts("Email sent: " <> email.id)
11 {:error, reason} -> IO.inspect(reason)
12end
3

GitHub, examples, and API reference

4

Need more help?

Elixir frameworks

Send with Elixir.

Get an API key and ship transactional email from Elixir using the official SDK.

Reloop