# Integration with Mailchimp

## What You'll Need <a href="#what-youll-need" id="what-youll-need"></a>

Backbench account - [Sign Up](https://bench.backbench.io/signup), the personal account will always remain free to use.

Mailchimp account- sign up, create a list and add recipient into the list, create your Campaign and customize your content of email also add the list to your campaign.

## Backend <a href="#frontend" id="frontend"></a>

1. Select +, in the upper right corner to create a Module. For example, say "mailchimp.js" and select CREATE or hit Enter.
2. Copy and paste the code module from below.
3. Replace USER NAME, PASSWORD  and API key from mailchimp setting section (create a new api key using create button).
4. Select save.

{% tabs %}
{% tab title="NodeJS" %}

```javascript
var request = require("request");
module.exports.endpoint = function(req, cb){
var options = { 
method: 'POST',url:
'https://us12.api.mailchimp.com/3.0/campaigns/[campaign_id]/actions/test',
  headers: { 
     content_type: 'application/json'
      },
  auth:{
      username:'username', 
     password: 'api_key'
    },
  body: { 
    test_emails: [ 'TO Mail' ],
    send_type: 'html' 
  },
  json: true 
};

request(options, function (error, response, body) {
  if (error) {
      cb({res:error})
  }
  console.log(body);
  cb({d:body});
});
 
}; 
```

{% endtab %}

{% tab title="BBLANG" %}

```javascript
chimp:handler(req)->{
bb:http:post({
url: 'https://us12.api.mailchimp.com/3.0/campaigns/[campaign_id]/actions/test',
  headers: { 
   content_type: 'application/json'
      },
  Auth:{
   username:'username', 
   password: 'api_key'
    },
  
 body: { 
         test_emails: [ 'TO EMAIL' ],
         send_type: 'html' 
        }
 }) 
 },

 redirect:ghandler(req, url)-> {
    return {
        status: 302,
        headers: {
            Location: url
        }
    }
}
```

{% endtab %}
{% endtabs %}


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://backbench.gitbook.io/backbench-docs/3rd-party-integrations/integration-with-mailchimp.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
