spatie/laravel-mailcoach-sdk
Composer 安装命令:
composer require spatie/laravel-mailcoach-sdk
包简介
An SDK to easily work with the Mailcoach API in Laravel apps
README 文档
README
This package contains the PHP SDK to work with Mailcoach. Both self-hosted (v6 and up) and hosted Mailcoach (aka Mailcoach Cloud) are supported. Using this package you can manage email lists, subscribers and campaigns.
Here are a few examples:
use Spatie\MailcoachSdk\Facades\Mailcoach; // creating a campaign $campaign = Mailcoach::createCampaign([ 'email_list_uuid' => 'use-a-real-email-list-uuid-here', 'name' => 'My new campaign', 'fields' => [ 'title' => 'The title on top of the newsletter', 'content' => '# Welcome to my newsletter', ], ]); // sending a test of the campaign to the given email address $campaign->sendTest('john@example.com'); // sending a campaign $campaign->send();
By default, Mailcoach' endpoints will are paginated with a limit of 1000. The package makes it easy to work with paginated resources. Just call ->next() to get the next page.
// listing all subscribers of a list $subscribers = $mailcoach->emailList('use-a-real-email-list-uuid-here')->subscribers(); do { foreach($subscribers as $subscriber) { echo $subscriber->email; } } while($subscribers = $subscribers->next())
Support us
We invest a lot of resources into creating best in class open source packages. You can support us by buying one of our paid products.
We highly appreciate you sending us a postcard from your hometown, mentioning which of our package(s) you are using. You'll find our address on our contact page. We publish all received postcards on our virtual postcard wall.
Installation
You can install the package via composer:
composer require spatie/laravel-mailcoach-sdk
You must publish the config file with:
php artisan vendor:publish --tag="mailcoach-sdk-config"
This is the contents of the published config file:
return [ /* * You'll find both the API token and endpoint on Mailcoach' * API tokens screen in the Mailcoach settings. */ 'api_token' => env('MAILCOACH_API_TOKEN'), 'endpoint' => env('MAILCOACH_API_ENDPOINT'), ];
In your .env file you should add the entries from the config file mentioned above. You'll find both the API token and endpoint on Mailcoach' API tokens screen in the Mailcoach settings.
Usage
You can use the Spatie\MailcoachSdk\Facades\Mailcoach facade to perform most operations.
Handling pagination
There are several methods, such as emailLists(), 'subscribers()' and campaigns() to will return paginated results. To get the next page of results just call next() on a result. If there are no more results, that method returns null.
Here's how you display the email addresses of every subscriber on a list
use Spatie\MailcoachSdk\Facades\Mailcoach; $subscribers = Mailcoach::subscribers('<email-list-uuid'); do { foreach($subscribers as $subscriber) { echo $subscriber->email; } } while($subscribers = $subscribers->next())
On paginated results, $subscribers in the example above there are also some more convenience methods:
results(): get the results. A results object is also iterable, so you can also get to the results by simply using the object in a loopnext(): fetch the next page of resultsprevious(): fetch the previous page of resultscurrentPage(): get the current page numbertotal(): get the total number of results across all pagesnextUrl(): get the URL that will be called to get the next page of resultspreviousUrl(): get the URL that will be called to get the previous page of results
Working with email lists
Here's how to get all email lists:
use Spatie\MailcoachSdk\Facades\Mailcoach; $emailLists = Mailcoach::emailLists();
You can get a single email list:
$emailList = $this->mailcoach->emailList('<uuid-of-email-list>');
This is how you can create an email list:
use Spatie\MailcoachSdk\Facades\Mailcoach; Mailcoach::createEmailList(['name' => 'My new email list']);
You can get properties of email list:
$emailList->name; $emailList->uuid; // ...
Take a look at the source code of Spatie\MailcoachSdk\Resources\EmailList to see the list of available properties.
You can update an email list by change one of the properties and calling save().
$emailList->name = 'Updated name'; $emailList->save();
You can delete an email list by calling delete().
$emailList->delete();
Working with subscribers
To get all subscribers of a list, you can call subscribers() on an email list.
use Spatie\MailcoachSdk\Facades\Mailcoach; $subscribers = Mailcoach::emailList('<uuid-of-email-list>')->subscribers();
Optionally, you can pass filters to subscribers(). Here how to get all subscribers with a Gmail-address.
use Spatie\MailcoachSdk\Facades\Mailcoach; $subscribers = Mailcoach::emailList('<uuid-of-email-list>') ->subscribers(['filter[email]=gmail.com']);
Alternatively, you can call subscribers() on $mailcoach
use Spatie\MailcoachSdk\Facades\Mailcoach; $subscribers = Mailcoach::subscribers('<uuid-of-email-list>', $optionalFilters);
There's also a convenience method to quickly get a subscriber from a list.
// returns instance of Spatie\MailcoachSdk\Resources\Subscriber // or null if the subscriber does not exist. $subscriber = $emaillist->subscriber('john@example.com');
Alternatively, you can get a subscriber by its UUID:
$subscriber = $mailcoach->subscriber('<subscriber-uuid>');
This how you can create a subscriber:
use Spatie\MailcoachSdk\Facades\Mailcoach; $subscriber = Mailcoach::createSubscriber( emailListUuid: '<email-list-uuid>', attributes: [ 'email' => '<email-address>', 'first_name' => 'John', 'last_name' => 'Doe', 'tags' => ['Newsletter'], ]);
You can get properties of a subscriber:
$subscriber->firstName; $subscriber->email; // ...
Take a look at the source code of Spatie\MailcoachSdk\Resources\Subscriber to see the list of available properties.
You can update a subscriber by change one of the properties and calling save().
$subscriber->firstName = 'Updated name'; $subscriber->save();
You can confirm, unsubscribe and delete a subscriber by calling these methods.
$subscriber->confirm(); $subscriber->unsubscribe(); $subscriber->delete();
Working with campaigns
Here's how to get all campaigns.
use Spatie\MailcoachSdk\Facades\Mailcoach; $campaigns = Mailcoach::campaigns();
You can also get a single campaign();
use Spatie\MailcoachSdk\Facades\Mailcoach; $campaign = Mailcoach::campaign('<campaign-uuid>');
This is how you can create a campaign:
use Spatie\MailcoachSdk\Facades\Mailcoach; $campaign = Mailcoach::createCampaign([ 'name' => 'My new campaign', 'subject' => 'Here is some fantastic content for you', 'email_list_uuid' => '<email-list-uuid>', // optionally, you can specify the uuid of a template 'template_uuid' => '<template-uuid>', // if that template has field, you can pass the values // in the `fields` array. If you use the markdown editor, // we'll automatically handle any passed markdown 'fields' => [ 'title' => 'Content for the title place holder', 'content' => '# My title', ], ]);
You can get properties of a campaign:
$campaign->name; $campaign->subject; // ...
Take a look at the source code of Spatie\MailcoachSdk\Resources\Campaign to see the list of available properties.
You can update a campaign by change one of the properties and calling save().
$campaign->name = 'Campaign'; $campaign->save();
A test mail will be sent when calling sendTest():
// sending a test to a single person $campaign->sendTest('john@example.com'); // sending a test to multiple persons $campaign->sendTest(['john@example.com', 'jane@example.com']);
The campaign will be sent to all subscribers of your list, by calling send():
$campaign->send();
A campaign can be deleted:
$campaign->delete();
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.
spatie/laravel-mailcoach-sdk 适用场景与选型建议
spatie/laravel-mailcoach-sdk 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 360.27k 次下载、GitHub Stars 达 41, 最近一次更新时间为 2022 年 11 月 08 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「laravel」 「spatie」 「laravel-mailcoach-sdk」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 spatie/laravel-mailcoach-sdk 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 spatie/laravel-mailcoach-sdk 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 spatie/laravel-mailcoach-sdk 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
Receive webhooks in Laravel apps
Easily optimize images using PHP
Store your application settings
Alfabank REST API integration
Add tags and taggable behaviour to your Laravel app
Speed up a Laravel application by caching the entire response additions
统计信息
- 总下载量: 360.27k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 41
- 点击次数: 13
- 依赖项目数: 1
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2022-11-08