All Projects → duartejc → mailchimp

duartejc / mailchimp

Licence: MIT license
A basic Elixir wrapper for version 3 of the MailChimp API

Programming Languages

elixir
2628 projects

Projects that are alternatives of or similar to mailchimp

cf-mailchimp
ColdFusion wrapper for the MailChimp 3.0 API
Stars: ✭ 17 (-59.52%)
Mutual labels:  mailchimp, mailchimp-api
mailchimp-marketing-python
The official Python client library for the Mailchimp Marketing API
Stars: ✭ 66 (+57.14%)
Mutual labels:  mailchimp, mailchimp-api
mailchimp-bundle
MailChimp integration with Symfony and MailChimp API V3
Stars: ✭ 40 (-4.76%)
Mutual labels:  mailchimp, mailchimp-api
Mailchimp Api
Super-simple, minimum abstraction MailChimp API v3 wrapper, in PHP
Stars: ✭ 1,977 (+4607.14%)
Mutual labels:  mailchimp, mailchimp-api
mailchimp-marketing-ruby
The official Ruby client library for the Mailchimp Marketing API
Stars: ✭ 25 (-40.48%)
Mutual labels:  mailchimp, mailchimp-api
mailchimp-marketing-php
The official PHP client library for the Mailchimp Marketing API
Stars: ✭ 88 (+109.52%)
Mutual labels:  mailchimp, mailchimp-api
mailchimp-marketing-node
The official Node.js client library for the Mailchimp Marketing API
Stars: ✭ 106 (+152.38%)
Mutual labels:  mailchimp, mailchimp-api
Trado
Trado is a lightweight, easy to use ecommerce platform; designed to allow developers to quickly deploy a premium ecommerce store for their business
Stars: ✭ 149 (+254.76%)
Mutual labels:  mailchimp
Gatsby Plugin Mailchimp
A simple, lightweight Gatsby plugin to subscribe new email addresses to your Mailchimp list
Stars: ✭ 125 (+197.62%)
Mutual labels:  mailchimp
Mailchimp Subscribe Craft
Simple Craft plugin for subscribing to a MailChimp list.
Stars: ✭ 117 (+178.57%)
Mutual labels:  mailchimp
Mailchimp For Wordpress
The #1 Mailchimp plugin for WordPress
Stars: ✭ 111 (+164.29%)
Mutual labels:  mailchimp
Formchimp
A customizable MailChimp ajax plugin for jQuery
Stars: ✭ 98 (+133.33%)
Mutual labels:  mailchimp
Mailchimp.net
Mail Chimp 3.0 Wrapper
Stars: ✭ 248 (+490.48%)
Mutual labels:  mailchimp
yikes-inc-easy-mailchimp-extender
Easy Forms for MailChimp WordPress Plugin
Stars: ✭ 24 (-42.86%)
Mutual labels:  mailchimp-api
mailchimp-mailer
Provides Mailchimp integration for Symfony Mailer
Stars: ✭ 20 (-52.38%)
Mutual labels:  mailchimp
wemail
Send Affordable Bulk Email Campaign Through WordPress
Stars: ✭ 19 (-54.76%)
Mutual labels:  mailchimp
Builderbook
Open source web application to learn JS stack: React, Material-UI, Next.js, Node.js, Express.js, Mongoose, MongoDB database.
Stars: ✭ 3,015 (+7078.57%)
Mutual labels:  mailchimp
mailchimp-transactional-node
The official Node.js client library for the Mailchimp Transactional API
Stars: ✭ 30 (-28.57%)
Mutual labels:  mailchimp
Saas
Build your own SaaS business with SaaS boilerplate. Productive stack: React, Material-UI, Next, MobX, WebSockets, Express, Node, Mongoose, MongoDB. Written with TypeScript.
Stars: ✭ 2,720 (+6376.19%)
Mutual labels:  mailchimp
mailchimp-transactional-php
The official PHP client library for the Mailchimp Transactional API
Stars: ✭ 24 (-42.86%)
Mutual labels:  mailchimp

MailChimp

Module Version Hex Docs Total Download License Last Updated

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_all_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 file for more details.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].