vatps/mailchimp-rest-api
Composer 安装命令:
composer require vatps/mailchimp-rest-api
包简介
Very Easy to use MailChimp REST Enabled API 3.0 Wrapper Class.
关键字:
README 文档
README
Very Easy to use MailChimp REST Enabled API 3.0 Wrapper Class in PHP.
Requires PHP 5.3 and curl extension.
Installation
You can install the mailchimp-rest-api using Composer. Just add the following to your composer.json:
{
"require": {
"vatps/mailchimp-rest-api": "dev-master"
}
}
You will then need to:
- run
composer installto get these dependencies added to your vendor directory - add the autoloader to your application with this line:
require("vendor/autoload.php")
Alternatively you can just download the MailChimp.php file and include it manually.
Laravel Installation
Run composer require vatps/mailchimp-rest-api in terminal.
Laravel Example
<?php
use \VPS\MailChimp;
$mc = new MailChimp();
$mc->setApiKey('yourapikeyhere-us1');
$result = $mc->get('/lists/');
return $result;
You can find all available Resources at http://kb.mailchimp.com/api/resources
Examples
Create New Instance and set mailchimp API Key.
<?php
$mc = new \VPS\MailChimp('yourapikeyhere-us1');
Lists Collection (GET /lists/)
<?php
$result = $mc->get('/lists/');
print_r($result);
Lists Instance (GET /lists/{list_id})
<?php
$result = $mc->get('/lists/{list_id}');
print_r($result);
REMOVE LIST (DELETE /lists/{list_id})
<?php
$mc->delete('/lists/{list_id}');
Subscribe to a list (POST /lists/{list_id}/members)
<?php
$result = $mc->post('/lists/{list_id}/members', array(
'email_address' => 'test@vps.com',
'merge_fields' => array('FNAME'=>'VAT', 'LNAME'=>'PS'),
'status' => 'subscribed'
));
print_r($result);
Contact me if you need any help.
vatps/mailchimp-rest-api 适用场景与选型建议
vatps/mailchimp-rest-api 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 79.31k 次下载、GitHub Stars 达 28, 最近一次更新时间为 2015 年 06 月 24 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「php」 「mailchimp」 「api」 「class」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 vatps/mailchimp-rest-api 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 vatps/mailchimp-rest-api 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 vatps/mailchimp-rest-api 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
A PSR-7 compatible library for making CRUD API endpoints
MailChimp OAuth 2.0 Client Provider for The PHP League OAuth2-Client
Manage newsletters in Laravel
The Automated Provision of Email Services (APES) module will allow you to set up an automated sync mechanism between the SilverStripe Member DataObject and MailChimp.
A very minimal Mailchimp integration for Symfony
MailChimp Eventer
统计信息
- 总下载量: 79.31k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 28
- 点击次数: 17
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2015-06-24