PHPackages                             leowebguy/simple-mailchimp - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Mail &amp; Notifications](/categories/mail)
4. /
5. leowebguy/simple-mailchimp

ActiveCraft-plugin[Mail &amp; Notifications](/categories/mail)

leowebguy/simple-mailchimp
==========================

A minimal Craft plugin to connect forms to Mailchimp

3.0.1(1y ago)44.0k9proprietaryPHPPHP ^8.2

Since Feb 14Pushed 1y ago1 watchersCompare

[ Source](https://github.com/leowebguy/simple-mailchimp)[ Packagist](https://packagist.org/packages/leowebguy/simple-mailchimp)[ RSS](/packages/leowebguy-simple-mailchimp/feed)WikiDiscussions main Synced 1mo ago

READMEChangelog (10)Dependencies (6)Versions (11)Used By (0)

Simple Mailchimp plugin for Craft
=================================

[](#simple-mailchimp-plugin-for-craft)

A minimal Craft plugin to connect forms to Mailchimp

---

Composer | Important
--------------------

[](#composer--important)

Craft 5

```
"require": {
"leowebguy/simple-mailchimp": "^3.0",
}

```

Craft 4

```
"require": {
   "leowebguy/simple-mailchimp": "^2.0",
}

```

Craft 3

```
"require": {
   "leowebguy/simple-mailchimp": "^1.0.4",
}

```

---

Installation
------------

[](#installation)

```
composer require leowebguy/simple-mailchimp
```

On your Control Panel, go to Settings → Plugins → "Simple Mailchimp" → Install

Credentials
-----------

[](#credentials)

Gather the necessary info from Mailchimp

#### API Key *MC\_API\_KEY*

[](#api-key-mc_api_key)

Go to  &gt; Select Audience &gt; Settings &gt; Audience name and defaults &gt; Audience ID

[![Screenshot](resources/list_id.png)](resources/list_id.png)

#### Audience ID *MC\_LIST\_ID*

[](#audience-id-mc_list_id)

Go to  &gt; API Key

[![Screenshot](resources/api_key.png)](resources/api_key.png)

Add the credentials to plugin settings

[![Screenshot](resources/settings.png)](resources/settings.png)

You may also use `.env` parameters like in the example above.

```
# Mailchimp
MC_API_KEY=xxx12345x1234x123xxx123xxxxx123xx-us14
MC_LIST_ID=xxx1234xx1234
```

Usage
-----

[](#usage)

Your newsletter form template can look something like this:

```

    {{ csrfInput() }}

    Submit

```

*The only required field is `email`, all the rest is optional*

use the vanilla js example below:

```
const form = document.getElementById('#mailchimp')
form.onsubmit = (e) => {
    e.preventDefault();
    fetch('/mailchimp/send', {
        method: 'post',
        body: new FormData(this)
    })
    .then((r) => r.json())
    .then((r) => {
        if (r.success) {
            alert(r.msg)
        } else {
            alert(r.msg)
        }
    })
    .catch((e) => {
        console.error(e);
    });
};
```

or jquery/ajax...

```
$('form#mailchimp').submit((e) => {
    e.preventDefault();
    $.post({
        url: '/mailchimp/send',
        data: $(this).serialize(),
        success: (r) => {
            if (r.success) {
                alert(r.msg)
            } else {
                alert(r.msg)
            }
        },
        error: (e) => {
            console.error(e);
        }
    });
});
```

###  Health Score

39

—

LowBetter than 86% of packages

Maintenance36

Infrequent updates — may be unmaintained

Popularity27

Limited adoption so far

Community13

Small or concentrated contributor base

Maturity68

Established project with proven stability

 Bus Factor1

Top contributor holds 96.4% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~107 days

Recently: every ~141 days

Total

10

Last Release

587d ago

Major Versions

1.0.4 → 2.0.02022-08-26

2.0.2 → 3.0.02024-03-27

2.0.x-dev → 3.0.12024-10-08

PHP version history (2 changes)2.0.0PHP ^8.0.2

3.0.0PHP ^8.2

### Community

Maintainers

![](https://www.gravatar.com/avatar/44216bb5de0cacbd3d995a1a71c3ee395bd36380305e547ac31452f86d4cd713?d=identicon)[leowebguy](/maintainers/leowebguy)

---

Top Contributors

[![leowebguy](https://avatars.githubusercontent.com/u/8460020?v=4)](https://github.com/leowebguy "leowebguy (27 commits)")[![michaelcacciatore](https://avatars.githubusercontent.com/u/17338266?v=4)](https://github.com/michaelcacciatore "michaelcacciatore (1 commits)")

---

Tags

craft-cmscraft-cms-plugincraft-plugincraft4craft5craftcmsmailchimpcraftcmsnewslettermailing

###  Code Quality

Code StyleLaravel Pint

### Embed Badge

![Health badge](/badges/leowebguy-simple-mailchimp/health.svg)

```
[![Health](https://phpackages.com/badges/leowebguy-simple-mailchimp/health.svg)](https://phpackages.com/packages/leowebguy-simple-mailchimp)
```

###  Alternatives

[spatie/laravel-newsletter

Manage Mailcoach and MailChimp newsletters in Laravel

1.6k6.3M26](/packages/spatie-laravel-newsletter)[putyourlightson/craft-campaign

Send and manage email campaigns, contacts and mailing lists.

6435.0k1](/packages/putyourlightson-craft-campaign)[sup7even/mailchimp

Simple MailChimp integration to let users register to a specific list

1531.9k](/packages/sup7even-mailchimp)[mediaessenz/mail

Powerful newsletter system for TYPO3

119.1k2](/packages/mediaessenz-mail)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
