mandrill alternatives and similar packages
Based on the "Third Party APIs" category.
Alternatively, view mandrill alternatives based on common mentions on social networks and blogs.
-
ethereumex
Elixir JSON-RPC client for the Ethereum blockchain 0x063D3d782598744AF1252eBEaf3aA97D990Edf72 -
MongoosePush
MongoosePush is a simple Elixir RESTful service allowing to send push notification via FCM and/or APNS. -
cashier
Cashier is an Elixir library that aims to be an easy to use payment gateway, whilst offering the fault tolerance and scalability benefits of being built on top of Erlang/OTP -
airbrake
An Elixir notifier to the Airbrake/Errbit. System-wide error reporting enriched with the information from Plug and Phoenix channels.
SaaSHub - Software Alternatives and Reviews
Do you think we are missing an alternative of mandrill or a related project?
README
Mandrill
A Mandrill wrapper for Elixir.
Installation
Add mandrill
to your dependencies in your mix.exs
.
defp deps do
[...
{:mandrill, "~> 0.4"}]
end
Usage
Note
You must provide a valid api key, either through the mix config value
:mandrill, :key
, or theMANDRILL_KEY
environment variable.
iex> Mandrill.start
:ok
iex> Mandrill.key
"your_key"
iex> Mandrill.Users.info
[username: "your_username", created_at: "2013-12-05 00:24:19.47554",
public_id: "your_public_id", reputation: 0, hourly_quota: 25,
backlog: 0,
stats: [today: [sent: 0, hard_bounces: 0, soft_bounces: 0, rejects: 0,
complaints: 0, unsubs: 0, opens: 0, unique_opens: 0, clicks: 0,
unique_clicks: 0],
last_7_days: [sent: 0, hard_bounces: 0, soft_bounces: 0, rejects: 0,
complaints: 0, unsubs: 0, opens: 0, unique_opens: 0, clicks: 0,
unique_clicks: 0],
last_30_days: [sent: 0, hard_bounces: 0, soft_bounces: 0, rejects: 0,
complaints: 0, unsubs: 0, opens: 0, unique_opens: 0, clicks: 0,
unique_clicks: 0],
last_60_days: [sent: 0, hard_bounces: 0, soft_bounces: 0, rejects: 0,
complaints: 0, unsubs: 0, opens: 0, unique_opens: 0, clicks: 0,
unique_clicks: 0],
last_90_days: [sent: 0, hard_bounces: 0, soft_bounces: 0, rejects: 0,
complaints: 0, unsubs: 0, opens: 0, unique_opens: 0, clicks: 0,
unique_clicks: 0],
all_time: [sent: 0, hard_bounces: 0, soft_bounces: 0, rejects: 0,
complaints: 0, unsubs: 0, opens: 0, unique_opens: 0, clicks: 0,
unique_clicks: 0]]]
iex> Mandrill.Users.info[:username]
"your_username"
Reference
See Mandrill's API docs.
Dependencies
License
See LICENSE
*Note that all licence references and agreements mentioned in the mandrill README section above
are relevant to that project's source code only.