This is a basic Elixir wrapper for version 3 of the MailChimp API.
First, add MailChimp lib to your mix.exs
dependencies:
def deps do
[
{:mailchimp, "~> 0.2.0"}
]
end
and run $ mix deps.get
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")
Mailchimp.Account.get!()
Mailchimp.Account.get_all_lists!
Mailchimp.List.create_member(list, "test@email.com", "subscribed", %{}, %{})
Mailchimp.Campaign.create!(:regular)
Copyright (c) 2017 Jean Duarte
This work is free. You can redistribute it and/or modify it under the terms of the MIT License. See the LICENSE.md file for more details.