keepsuit / laravel-zoho-campaigns
Manage Zoho Campaigns from Laravel
Installs: 2 222
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 1
Forks: 1
Open Issues: 1
Requires
- php: ^8.1
- guzzlehttp/guzzle: ^7.5
- illuminate/contracts: ^9.0 || ^10.0 || ^11.0
- spatie/laravel-package-tools: ^1.16
Requires (Dev)
- larastan/larastan: ^2.8
- laravel/pint: ^1.13
- mockery/mockery: ^1.6
- nunomaduro/collision: ^6.0 || ^7.0 || ^8.0
- orchestra/testbench: ^7.0 || ^8.0 || ^9.0
- pestphp/pest: ^1.23 ||^2.0
- pestphp/pest-plugin-laravel: ^1.4 || ^2.0
- phpstan/extension-installer: ^1.1
- phpstan/phpstan-deprecation-rules: ^1.0
- spatie/laravel-ray: ^1.26
README
This package provides an easy way to interact with the Zoho Campaigns API.
Right now only the following features are supported:
- Subscribe a contact to a list
- Unsubscribe a contact from a list
- Get subscribers from a list
- Get subscribers count of a list
Installation
You can install the package via composer:
composer require keepsuit/laravel-zoho-campaigns
You can publish and run the migrations with:
php artisan vendor:publish --tag="campaigns-migrations"
php artisan migrate
You can publish the config file with:
php artisan vendor:publish --tag="campaigns-config"
This is the contents of the published config file:
return [ /** * The driver to use to interact with Zoho Campaigns API. * You may use "log" or "null" to prevent calling the * API directly from your environment. */ 'driver' => env('CAMPAIGNS_DRIVER', 'api'), /** * Zoho datacenter region to use. * Available regions: us, eu, in, au, jp, cn */ 'region' => env('CAMPAIGNS_REGION'), /** * Zoho api client. * Run php artisan campaigns:setup and follow the instructions to generate an api client. */ 'client_id' => env('CAMPAIGNS_CLIENT_ID'), 'client_secret' => env('CAMPAIGNS_CLIENT_SECRET'), /** * The listName to use when no listName has been specified in a method. */ 'defaultListName' => 'subscribers', /** * Here you can define properties of the lists. */ 'lists' => [ /** * This key is used to identify this list. It can be used * as the listName parameter provided in the various methods. * * You can set it to any string you want and you can add * as many lists as you want. */ 'subscribers' => [ /** * A Zoho campaigns list key. * https://www.zoho.com/campaigns/help/developers/list-management.html * You can find this value from Zoho campaigns dashboard under: * Contacts > Manage Lists > "Your list" > Setup */ 'listKey' => env('CAMPAIGNS_LIST_KEY'), ], ], ];
First time setup:
This should be done also on production because tokens are saved in the database. Run the following command and follow the instructions:
php artisan campaigns:setup
Usage
Subscribe a contact to a list
use Keepsuit\Campaigns\Facades\Campaigns; Campaigns::subscribe('user_a@example.com'); // with additional details: Campaigns::subscribe('user_a@example.com', contactInfo: [ 'First Name' => 'John', 'Last Name' => 'Doe', ]); // on a specific list: Campaigns::subscribe('user_a@example.com', contactInfo: [], listName: 'listName'); // if user previously unsubscribed from the list, you can resubscribe them (it support the same parameters as subscribe): Campaigns::resubscribe('user_a@example.com');
Unsubscribe a contact from a list
use Keepsuit\Campaigns\Facades\Campaigns; Campaigns::unsubscribe('user_a@example.com'); // from a specific list: Campaigns::unsubscribe('user_a@example.com', listName: 'listName');
Get subscribers from a list
use Keepsuit\Campaigns\Facades\Campaigns; // This method returns a LazyCollection and will fetch additional pages when needed. // You can filter by status and sort the results. Campaigns::subscribers(status: 'active', sort: 'desc'); // from a specific list: Campaigns::subscribers(listName: 'listName');
Get subscribers count of a list
use Keepsuit\Campaigns\Facades\Campaigns; // You can filter by status. Campaigns::subscribersCount(status: 'active'); // from a specific list: Campaigns::subscribersCount(listName: 'listName');
Testing
composer test
Changelog
Please see CHANGELOG for more information on what has changed recently.
Contributing
Please see CONTRIBUTING for details.
Security Vulnerabilities
Please review our security policy on how to report security vulnerabilities.
Credits
License
The MIT License (MIT). Please see License File for more information.