PHPackages                             svikramjeet/campaignmonitor - 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. [API Development](/categories/api)
4. /
5. svikramjeet/campaignmonitor

ActiveLibrary[API Development](/categories/api)

svikramjeet/campaignmonitor
===========================

campaignmonitor - wrapper of official campaignmonitor php package

3.0(6y ago)042MITPHPPHP &gt;7.1

Since Sep 16Pushed 6y ago1 watchersCompare

[ Source](https://github.com/svikramjeet/campaignmonitor)[ Packagist](https://packagist.org/packages/svikramjeet/campaignmonitor)[ Docs](https://github.com/svikramjeet/campaignmonitor)[ RSS](/packages/svikramjeet-campaignmonitor/feed)WikiDiscussions master Synced 3d ago

READMEChangelog (3)Dependencies (2)Versions (6)Used By (0)

campaignmonitor
===============

[](#campaignmonitor)

wrapper of campaign monitor php package

Laravel wrapper for CampaignMonitor APIs support Laravel 5 and 6

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

[](#installation)

Pull in the package through Composer;

```
composer require svikramjeet/campaignmonitor

```

If you have auto-discover for Laravel packages, please skip this. Add the service provider to `config/app.php`

```
Svikramjeet\CampaignMonitor\Providers\CampaignMonitorServiceProvider::class,
```

This package has a Laravel facade. You can register it in the `aliases` array in the `config/app.php` file

```
'CampaignMonitor' => Svikramjeet\CampaignMonitor\Facades\CampaignMonitor::class,
```

Publish the config file if you want to modify it.

```
$ php artisan vendor:publish --provider="Svikramjeet\CampaignMonitor\Providers\CampaignMonitorServiceProvider"

```

And set your own API key and Client ID via .env or similar to match these.

```
CAMPAIGNMONITOR_API_KEY=YourKey
CAMPAIGNMONITOR_CLIENT_ID=123456789

```

Usage
-----

[](#usage)

You can find all the methods in their package [campaignmonitor/createsend-php package](https://github.com/campaignmonitor/createsend-php).

Some examples;

```
// Add a subscriber to a list
$result = CampaignMonitor::subscribers('LIST_ID')->add([
    'EmailAddress' => 'email@example.com',
    'Name' => 'Ben',
    'ConsentToTrack' => 'No', // Yes, No, or Unchanged - now required by API v3.2
]);
```

```
// Create a list for your client
$result = CampaignMonitor::lists()->create(config('campaignmonitor.client_id'), [
    'Title' => 'List name',
]);
```

To send classic transactional emails

```
$data = [
    'From' => 'from@example.org',
    'To' => 'to@example.org',
    'ReplyTo' => 'replyto@example.org',
    'CC' => 'cc@example.org',
    'BCC' => 'bcc@example.org',
    'HTML' => 'Hello there!',
    'Text' => 'Hello there!',
    'ConsentToTrack' => 'No', // Yes, No, or Unchanged - now required by API v3.2
];

CampaignMonitor::classicSend('CLIENT_ID')->send($data);
```

###  Health Score

26

—

LowBetter than 43% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity8

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity57

Maturing project, gaining track record

 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

Every ~42 days

Total

5

Last Release

2261d ago

Major Versions

1.2 → 2.02019-12-15

2.0 → 3.02020-03-04

PHP version history (2 changes)1.0PHP &gt;5.6

1.1PHP &gt;7.1

### Community

Maintainers

![](https://www.gravatar.com/avatar/3041316617c7205d9059e217b8b2497f0cbad696d8d3431ba4877411813e5941?d=identicon)[svikramjeet](/maintainers/svikramjeet)

---

Top Contributors

[![svikramjeet](https://avatars.githubusercontent.com/u/16540182?v=4)](https://github.com/svikramjeet "svikramjeet (7 commits)")

---

Tags

phpwrappergitcampaignmonitor

### Embed Badge

![Health badge](/badges/svikramjeet-campaignmonitor/health.svg)

```
[![Health](https://phpackages.com/badges/svikramjeet-campaignmonitor/health.svg)](https://phpackages.com/packages/svikramjeet-campaignmonitor)
```

###  Alternatives

[php-tmdb/laravel

Laravel Package for TMDB ( The Movie Database ) API. Provides easy access to the wtfzdotnet/php-tmdb-api library.

16553.3k1](/packages/php-tmdb-laravel)[dariusiii/tmdb-laravel

Laravel Package for TMDB ( The Movie Database ) API. Provides easy access to the wtfzdotnet/php-tmdb-api library.

1821.1k](/packages/dariusiii-tmdb-laravel)[php-tmdb/symfony

Symfony Bundle for TMDB (The Movie Database) API. Provides easy access to the php-tmdb/api library.

3649.7k](/packages/php-tmdb-symfony)

PHPackages © 2026

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