jdeocampo/laravel-campaign-monitor

A Laravel 5 wrapper for Campaign Monitor using Create-Send-Php version 6.0

v2.0.1 2018-11-15 15:21 UTC

This package is not auto-updated.

Last update: 2024-04-28 03:03:58 UTC


README

A Laravel 5 wrapper for CampaignMonitor APIs

Installation

To get the latest version of Laravel-CampaignMonitor simply require it in your composer.json file.

"jdeocampo/laravel-campaignmonitor": "dev-master"

You'll then need to run composer install to download it and have the autoloader updated.

Once Laravel-CampaignMonitor is installed you need to register the service provider with the application. Open up app/config/app.php and find the providers key.

<?php

'providers' => [

    Jdeocampo\CampaignMonitor\CampaignMonitorServiceProvider::class,

]

Laravel-CampaignMonitor also ships with a facade. You can register the facade in the aliases key of your app/config/app.php file.

<?php

'aliases' => [

    'CampaignMonitor' => Jdeocampo\CampaignMonitor\Facades\CampaignMonitor::class,

]

Create the configuration file using artisan

$ php artisan vendor:publish --provider="Jdeocampo\CampaignMonitor\CampaignMonitorServiceProvider"

And set your own API key and Client ID:

<?php

return [

    'api_key' => env('CAMPAIGNMONITOR_API_KEY'),

    'client_id' => env('CAMPAIGNMONITOR_CLIENT_ID'),

];

Usage

You can find all the methods in the original campaignmonitor/createsend-php package.

Some examples:

<?php

// Add an user to a List ID:
$result = CampaignMonitor::subscribers('LIST_ID')->add([
    'EmailAddress' => 'example@gmail.com',
    'Name' => 'Giovanni Casinelli',
]);

// Create a list for a Client:
$result = CampaignMonitor::lists()->create(\Config::get('campaignmonitor.client_id'), [
    'Title' => 'List name',
]);

To send classic transactional emails:

<?php

$data = [
    'From' => 'from@example.org',
    'To' => 'to@example.org',
    'ReplyTo' => 'replyto@example.org',
    'CC' => 'cc@example.org',
    'BCC' => 'bcc@example.org',
    'HTML' => '<p>Hello there!</p>',
    'Text' => 'Hello there!',
];

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