Popularity
5.3
Stable
Activity
0.0
Stable
51
3
13

Monthly Downloads: 858
Programming language: Elixir
License: MIT License
Tags: Third Party APIs    
Latest version: v2.0.0

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.

Do you think we are missing an alternative of mandrill or a related project?

Add another 'Third Party APIs' Package

README

Mandrill Hex.pm Docs

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 the MANDRILL_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

githalytics.com alpha


*Note that all licence references and agreements mentioned in the mandrill README section above are relevant to that project's source code only.