Forked from: original mailchimp repo because the original isn't being actively released to hex.pm
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.7"}]
end
and run $ mix deps.get. Now, list the :mailchimp application as your
application dependency:
def application do
[applications: [:mailchimp]]
endUsage
Put your API key in your config.exs file:
config :mailchimp,
api_key: "your api-us10"or
Application.put_env(:mailchimp, :api_key, "your apikey-us12")Start a new process:
Mailchimp.start_linkGetting Account Details
Mailchimp.Account.get!()Getting All Lists
Mailchimp.Account.get! |> Mailchimp.Account.lists!Adding a Member to a List
Mailchimp.List.create_member(list, "test@email.com", :subscribed, %{}, %{})Creating a new Campaign
Mailchimp.Campaign.create!(:regular)