mailchimp alternatives and similar packages
Based on the "Third Party APIs" category.
Alternatively, view mailchimp 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 mailchimp or a related project?
README
MailChimp
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.1.2"}
]
end
and run $ mix deps.get
Usage
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")
Getting 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, "[email protected]", "subscribed", %{}, %{})
Creating a new Campaign
Mailchimp.Campaign.create!(:regular)
Copyright and License
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](./LICENSE.md) file for more details.
*Note that all licence references and agreements mentioned in the mailchimp README section above
are relevant to that project's source code only.