This is a basic Elixir wrapper for version 3 of the MailChimp API.
Installation
First, add MailChimp lib to your mix.exs dependencies:
def deps do
[{:mailchimp, "~> 0.0.2"}]
end
and run $ mix deps.get. Now, list the :mailchimp application as your
application dependency:
def application do
[applications: [:mailchimp]]
end
Usage
- Put your API key in your config.exs file:
config :mailchimp,
apikey: "your api-us10"
-
Start a new process:
Mailchimp.start_link
Getting Account Details
Mailchimp.get_account_details()
Getting All Lists
Mailchimp.get_all_lists()
Adding a Member to a List
Mailchimp.add_member("list_id", "e-mail")