0.1.2 • Published 4 years ago

gatsby-plugin-klaviyo v0.1.2

Weekly downloads
172
License
MIT
Repository
github
Last release
4 years ago

gatsby-plugin-klaviyo

Easily add Klaviyo email marketing to a Gatsby site.

Install

npm install --save gatsby-plugin-klaviyo

How to Use

You'll need a Klaviyo account to use this plugin - sign up at Klaviyo.

When you've signed up and logged in to the dashboard, go to Account -> Settings -> API Keys and look for the `API key / Site ID' in bold.

In gatsby-config.js configure the plugin with your key:

module.exports = {
  plugins: [
    {
      resolve: 'gatsby-plugin-klaviyo',
      options: {
        klaviyoKey: 'your-klaviyo-key',
        enableDuringDevelop: false, // Optional. Disables Klaviyo when running Gatsby dev server. Defaults to true.
      },
    },
  ],
}

Restart your Gatsby server for the plugin to take effect.

Acknowledgements

Based off gatsby-plugin-tidio-chat

Plugin updated for Klaviyo email marketing by ecomloop