Sign up for a SparkPost account and visit our Developer Hub for even more content.
The official Elixir package for the SparkPost API.
Capabilities include:
- convenience functions for easy "I just want to send mail" users
- advanced functions for unleashing all of Sparkpost's capabilities
- Add sparkpost and ibrowse to your list of dependencies in
mix.exs
:
def deps do
[
{:sparkpost, "~> 0.5.1"}
]
end
- Ensure sparkpost is started before your application:
def application do
[applications: [:sparkpost]]
end
- Update your dependencies:
$ mix deps.get
In your config/config.exs file:
config :sparkpost, api_key: "YOUR-API-KEY"
defmodule MyApp.Example do
def send_message do
SparkPost.send to: "[email protected]",
from: "[email protected]",
subject: "Sending email from Elixir is awesome!",
text: "Hi there!",
html: "<p>Hi there!</p>"
end
end
defmodule MyApp.Example do
alias SparkPost.{Content, Recipient, Transmission}
def send_message do
Transmission.send(%Transmission{
recipients: [ "[email protected]" ],
content: %Content.Inline{
subject: "Sending email from Elixir is awesome!",
from: "[email protected]",
text: "Hi there!",
html: "<p>Hi there!</p>"
}
})
end
end
Start your app and send a message:
$ iex -S mix
iex> MyApp.Example.send_message
{:ok, ...}
We welcome your contributions! See CONTRIBUTING.md for details on how to help out.