GSD

Automate Your Content Workflows by Integrating ButterCMS with Mailchimp

Posted by Ashutosh K. Singh on October 12, 2023

In this tutorial, we will see how to leverage ButterCMS Webhooks to automate your workflows. We will discuss how you can integrate ButterCMS Webhooks with an Email Service Provider (ESP) like Mailchimp.

If you want to jump right into the code, check out the GitHub repo here.

Also, here's a link to the deployed version: https://pipedream.com/@lelouchB/buttercms-mailchimp-v1-p_zACkqza

What is an ESP?

ESP stands for Email Service Provider, and generally refers to a company or platform that offers email marketing or bulk email services, such as dynamic email content, email automation, A/B testing of email and automation, segmentation, or analytics.

Mailchimp is one of the most popular and commonly used Email Service Providers. Other examples include ActiveCampaign, HubSpot, ConvertKit, and Klaviyo.

In this tutorial, we will use ButterCMS webhooks with Mailchimp, but you can easily integrate it with any other Email Service Provider.

There are so many use cases where you can use ButterCMS webhooks and Mailchimp together, but right now we will create a workflow where an automated email is sent to your blog readers or Mailchimp audience whenever you publish a new blog post on ButterCMS. We will use Pipedream, a production-scale serverless platform, to create this workflow.

Why use an email service provider?

There are many benefits to using an Email Service Provider for your email/marketing campaigns:

  • Drag and drop email designers, templates, custom forms, email segmentations, and automated workflows can increase productivity and take your email strategy to the next level
  • Almost all ESPs have free tiers so that you can get started without any hassle
  • Detailed analytics so you can make better decisions
  • Target audience campaigns for better conversion rates

What are webhooks?

Webhooks, in short, are automated messages or notifications sent from apps to a specified destination when an event occurs or is triggered. For example, you can use ButterCMS webhooks to notify your audience whenever you publish a new blog post. The messages are generally sent in a POST request with the event information as the request payload. Your app or API receives this POST request, and further actions are executed based on the request's payload.

blog-cta-any-stack_800x100.png

Why should you integrate ButterCMS with an ESP?

There are many use cases where integrating ButterCMS with your ESP can help boost your email/marketing campaigns. These include:

  • Notifying your audience of new content with an automated content workflow—so no more manual grunt work
  • Using the ButterCMS webhooks to create automated weekly/biweekly/monthly newsletters to keep your audience engaged
  • Sending automated updates to your team about changes to your ButterCMS content

Tutorial prerequisites

How to set up ButterCMS webhooks with Pipedream

ButterCMS comes with all the possible webhooks that you might need. Some of them are as follows:

  • Event - post.all - blog post has any activity on it
  • Event - post.published - blog post is published
  • Event - post.draft - draft blog post is saved

For this tutorial, we will use the post.published event that is triggered whenever a new blog post is published. You can check out the complete list of events and their triggers here.

Here is what the payload or the body of the POST request looks like.

```js
{
  "data": {
    "id": "example-page-slug"
    "page_type": "news",
    "locale": "en"
  }, 
  "webhook": {
    "event": "page.all", 
    "target": "<http://yoururl.com/process_webbook>"
  }
}
```

The payload includes the id of the blog post published; you will use this id of the blog post to fetch data from the ButterCMS API. Then this fetched data will be sent to Mailchimp, and a new campaign about the newly published blog post will be sent to your audience.

Head over to https://buttercms.com/settings/ in the browser and copy the Read API Token from your ButterCMS Settings. You will use this API Key to fetch the blog post data from using ButterCMS API.

Screenshot: ButterCMS settings API token

Create a free Pipedream account if you haven't already.

Navigate to https://pipedream.com/workflows and click on the New button to create a new workflow.

Screenshot: Pipedream create a new workflow

When prompted, click on HTTP/ Webhook on the Pipedream workflow page.

Screenshot: Pipedream http/webhook option

At the next prompt, click on New Requests (Payload Only). This makes sure the workflow is triggered only when a payload is attached to a webhook request.

Screenshot: Pipedream new requests (payload only)

Give a name to your source, such as ButterCMS - Blog is Published, and click on the Create Source button.

Screenshot: Pipedream create source

You will be shown a URL on the next page after creating the source. Copy that URL. This is the URL where you can catch the ButterCMS webhook requests.

Screenshot: Pipedream url with webhook request

Head over to https://buttercms.com/webhooks/ in your ButterCMS Settings and paste this URL with the following configurations. Click on the Save Changes button.

Screenshot: ButterCMS interface webhook configuration

Pipedream will now listen for new events from ButterCMS. To test this, create a new demo blog in your ButterCMS account and publish it.

Screenshot: ButterCMS blog engine sample post

Head over to your Pipedream dashboard, you will see the request sent by the webhook.

Screenshot: Pipedream dashboard request sent by webhook

You will use the id of the blog post to fetch the post using the ButterCMS API. Click on the plus icon below the SEND TEST EVENT button and click on the Run Node.js code tab.

Screenshot: Pipedream run node.js code tab

Update the Node.js code block as follows. 

Make sure to add your ButterCMS API Key in the auth_token query field.

```js
const axios = require("axios")
const response = await axios.get('<https://api.buttercms.com/v2/posts/>'
+ event.body.data.id+'/?auth_token=<YOUR API KEY>');

const postData = response.data;

return postData;
```

Your Pipedream workflow will look something like this. Click on the DEPLOY button in the headers.

Screenshot: Pipedream deploy

After deploying your workflow, click on the SEND TEST EVENT button to test the workflow.

Gif: Click send test event in Pipedream

You have successfully created the workflow to capture the post-published event and fetch the post data based on it. The next step is to create and send a new campaign for the new post using the Mailchimp Marketing API.

blog-cta-any-stack_800x100.png

How to send a campaign using Mailchimp

Create a draft campaign for a new post published in your Mailchimp account. Make sure to add a link to your blog’s homepage in the campaign email body.

We will replicate this draft campaign, update the subject and other details with the new post's data, and send it to the audience.

Follow the below steps to copy the campaign id of this draft campaign.

The next step is to create and copy a Mailchimp API Key for sending the campaign from Pipedream. 

Head over to the API Keys section of your Mailchimp account and create a new API Key.

Screenshot: Mailchimp API Keys section

Under the Your API keys section, click on the Create a Key button to create an API Key.

Screenshot: Mailchimp create API Key

After creating the API Key, you will see a dashboard similar to the one below under the Your API keys section. Copy your Mailchimp API Key.

Screenshot: Mailchimp your API keys

The next step is to copy your Mailchimp server prefix; you can copy it from your Mailchimp dashboard URL. For example, if your Mailchimp dashboard URL is https://us20.admin.mailchimp.com/, then us20 is your server prefix.

Update the Node.js code block in Pipedream like below. Make sure to replace the apiKey and server fields with your Mailchimp API Key and Server prefix.

```js
const axios = require("axios")
const client = require("@mailchimp/mailchimp_marketing");

client.setConfig({
  apiKey: <YOUR-MAILCHIMP-API-KEY>,
  server: <YOUR-MAILCHIMP-SERVER-PREFIX>,
});

const response = await axios.get('<https://api.buttercms.com/v2/posts/>'
+ event.body.data.id+'/?auth_token=<YOUR-BUTTERCMS-API-KEY>');

const postData = response.data;

const replicateCampaign = await client.campaigns.replicate(<YOUR-CAMPAIGN-ID>);

const updateCampaign =  await client.campaigns.update(replicateCampaign.id,{
      settings: {
      subject_line: 'New Blog Published -'+ postData.data.title,
      title:'New Blog Published'+ postData.data.title
      }
})

const sendCampaign = await client.campaigns.send(replicateCampaign.id);

return sendCampaign;
```

In the above code snippet, you import the @mailchimp/mailchimp_marketing package and create an instance using your API key and server prefix.

You replicate the draft campaign using the campaigns.replicate() method. Make sure to pass the id of the draft campaign in this method.

Then, update the title and subject of this replicated campaign using the campaigns.update method and pass the id of the replicated draft to it. You can configure the campaign even further by adding more fields in the campaigns.update method. You can see all the possible fields that you can update here.

Finally, you send the campaign using the campaigns.send() method.

Redeploy the above code by clicking on the DEPLOY button in the Pipedream headers.

Screenshot: Pipedream redeploy by clicking the deploy button again

You can test this workflow by clicking on the SEND TEST EVENT button.

Gif: Send test event again for the redeploy in Pipedream

You will see a null return after the workflow is executed, which is expected as the campaigns.send method returns an empty object after successful execution.

The campaign will be sent to the audience as configured in the draft campaign. You can test it by sending it to your personal email first. Here is a screenshot of the mail received with the updated Subject.

Screenshot: Sent mailchimp email in inbox

You can make the Pipedream workflow live by clicking on the Enable the trigger step to receive live events toggle button.

Screenshot: Pipedream enable trigger to receive live events toggle button

Conclusion

In this article, we discussed what Email Service Providers are and why they are essential for your marketing strategy. We also discussed what webhooks are and how they can help automate manual grunt work to increase productivity.

We saw how you can integrate ButterCMS Webhooks with Mailchimp using Pipedream to send automated emails whenever a new blog post is published thereby streamlining a crucial part of content workflows. 

You can now extend this project to add new features and functionalities to better suit your needs and requirements, like notifying your team whenever a new blog post is published, or when new item is added to your e-commerce app, or if and when a product runs out of stock.

Here are some additional resources that you can use if you're trying to achieve greater functionality:

Receive fresh tutorials and Butter product updates directly in your inbox. 
    
Ashutosh K. Singh

Ashutosh is a JavaScript developer and a technical writer. He writes about the fundamentals of JavaScript, Node.js, React, and tutorials on building projects in JavaScript and React.

ButterCMS is the #1 rated Headless CMS

G2 crowd review award G2 crowd review award G2 crowd review award G2 crowd review award G2 crowd review award G2 crowd review award G2 crowd review award G2 crowd review award G2 crowd review award G2 crowd review award G2 crowd review award G2 crowd review award

Don’t miss a single post

Get our latest articles, stay updated!