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.
-
gringotts
A complete payment library for Elixir and Phoenix Framework -
MongoosePush
MongoosePush is a simple Elixir RESTful service allowing to send push notification via FCM and/or APNS. -
sparkpost
SparkPost client library for Elixir https://developers.sparkpost.com -
elixtagram
:camera: Instagram API client for the Elixir language (elixir-lang) -
google_sheets
Elixir library for fetching Google Spreadsheet data in CSV format -
pay_pal
:money_with_wings: PayPal REST API client for the Elixir language (elixir-lang) -
amazon_product_advertising_client
An Amazon Product Advertising API client for Elixir -
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 -
elixir_ipfs_api
The Elixir library that is used to communicate with the IPFS REST endpoint.
ONLYOFFICE Docs — document collaboration in your environment
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.