PHPackages                             blenderdeluxe/mailchimpv3-laravel - 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. blenderdeluxe/mailchimpv3-laravel

ActiveLibrary[Mail &amp; Notifications](/categories/mail)

blenderdeluxe/mailchimpv3-laravel
=================================

A minimal service provider to set up and use the Mailchimp Api v3 PHP library in Laravel 5.\*

1.0(8y ago)11MITPHP

Since Nov 22Pushed 8y ago1 watchersCompare

[ Source](https://github.com/blenderdeluxe/mailchimpv3-laravel)[ Packagist](https://packagist.org/packages/blenderdeluxe/mailchimpv3-laravel)[ RSS](/packages/blenderdeluxe-mailchimpv3-laravel/feed)WikiDiscussions master Synced yesterday

READMEChangelog (1)Dependencies (2)Versions (2)Used By (0)

fraterblack/mailchimpv3-laravel
===============================

[](#fraterblackmailchimpv3-laravel)

A minimal service provider to set up and use the Mailchimp APi v3 PHP library in Laravel v5.\*

This service provider use Mailchimp API . A super-simple, minimum abstraction Mailchimp API v3 wrapper, in PHP.

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

[](#installation)

You can install using Composer:

```
composer require fraterblack/mailchimpv3-laravel

```

Register the service provider in `config/app.php` by inserting into the `providers` array

```
'providers' => [
	Fraterblack\Mailchimp\MailchimpServiceProvider::class,
]
```

To publish the default configuration file, execute the following command:

```
php artisan vendor:publish --provider="Fraterblack\Mailchimp\MailchimpServiceProvider"

```

Edit your .env file

```
MAILCHIMP_API_KEY="your-api-key-here"

```

for more info check ""

How it works
------------

[](#how-it-works)

This package contains a service provider, which binds an instance of an initialized Mailchimp API client to the IoC-container.

You recieve the Mailchimp API client through depencency injection already set up with your own API key.

**Usage example**

```
class NewsletterManager
{
	protected $mailChimp;
	protected $listId = '1234567890';        // Id of newsletter list

	/**
	 * Pull the Mailchimp API instance from the IoC-container.
	 */
	public function __construct(\DrewM\MailChimp\MailChimp $mailChimp)
	{
		$this->mailChimp = $mailChimp;
	}

	/**
	 * Add a subscriber in a list
     * for more info check "http://developer.mailchimp.com/documentation/mailchimp/reference/lists/members/"
	 */
	public function addEmailToList($email)
	{
		try {
			$result = $this->mailChimp->post("lists/" . $this->listId . "/members", [
                'email_address' => $email,
                'status'        => 'subscribed',
            ]);
        } catch (\Exception $e) {
        	// do something
        }
	}

	/**
	 * Get lists
     * for more info check "http://developer.mailchimp.com/documentation/mailchimp/reference/lists/"
	 */
	public function getLists()
	{
		try {
			$result = $this->mailChimp->get("lists");
        } catch (\Exception $e) {
        	// do something
        }
	}
}
```

For more examples of usage:

MailChimp API -

Mailchimp V3 Documentation -

This package is based on:

Based on

###  Health Score

26

—

LowBetter than 43% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity3

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity63

Established project with proven stability

 Bus Factor1

Top contributor holds 100% 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

Unknown

Total

1

Last Release

3093d ago

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/7284321?v=4)[Diego Cortés](/maintainers/blenderdeluxe)[@blenderdeluxe](https://github.com/blenderdeluxe)

---

Top Contributors

[![blenderdeluxe](https://avatars.githubusercontent.com/u/7284321?v=4)](https://github.com/blenderdeluxe "blenderdeluxe (2 commits)")

### Embed Badge

![Health badge](/badges/blenderdeluxe-mailchimpv3-laravel/health.svg)

```
[![Health](https://phpackages.com/badges/blenderdeluxe-mailchimpv3-laravel/health.svg)](https://phpackages.com/packages/blenderdeluxe-mailchimpv3-laravel)
```

###  Alternatives

[spatie/laravel-failed-job-monitor

Get notified when a queued job fails

1.0k2.6M4](/packages/spatie-laravel-failed-job-monitor)[vemcogroup/laravel-sparkpost-driver

SparkPost driver to use with Laravel 6.x|7.x|8.x|9.x|10.x

421.7M1](/packages/vemcogroup-laravel-sparkpost-driver)[spatie/mailcoach

Self-host Mailcoach

4007.0k](/packages/spatie-mailcoach)[synergitech/laravel-postal

This library integrates Postal with the standard Laravel mail framework.

38107.1k](/packages/synergitech-laravel-postal)[statamic-rad-pack/mailchimp

Subscribe registrations or contact forms to Mailchimp

1818.5k](/packages/statamic-rad-pack-mailchimp)[motomedialab/smtp2go

Send emails via API using the first-class email courier SMTP2Go

1316.3k](/packages/motomedialab-smtp2go)

PHPackages © 2026

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