1.0.2 • Published 4 years ago

@vagalumedigital/gatsby-plugin-mailchimp-api-v3 v1.0.2

Weekly downloads
-
License
GPL-2.0-only
Repository
github
Last release
4 years ago

UNDER DEVELOPMENT DO NOT USE

Intro

This is a plugin developed to manage your contacts on your audience.

Manage contacts on mailchimp. Create new user for your audience or update a user if exists.

Installation

yarn add @vagalumedigital/gatsby-plugin-mailchimp-api

Usage

gatsby-config.js

[
  {
    resolve: `@vagalumedigital/gatsby-plugin-mailchimp-api`,
    options: {
      id: '<id-of-your-list>', // string; ID of your mailchimp list found on your list settings
      key: '<MAILCHIMP-API-KEY>', // string; You can find your API key in account settings of your mailchimp account.
      timeout: 3500, // number; the amount of time, in milliseconds, that you want to allow mailchimp to respond to your request before timing out. defaults to 3500
    }
  }
];