rapidwebltd/simplemailchimp
Composer 安装命令:
composer require rapidwebltd/simplemailchimp
包简介
A simple MailChimp API wrapper, SimpleMailChimp makes it easy to pass data back and forth between your website and your MailChimp account. This includes subscribing or unsubscribing users, getting a subscriber’s details and getting all the members of a particular list.
README 文档
README
SimpleMailChimp is a simplified wrapper for common MailChimp functionality.
Installation
To install this package, just use composer.
composer require rapidwebltd/simplemailchimp
If your framework does not already do so, you must add require_once "vendor/autoload.php" to any files in which you wish to use SimpleMailChimp.
Getting Started
In order to create a SimpleMailChimp object, call the getByAPIKey function from the SimpleMailChimpFactory and pass it your API key.
$simpleMailChimp = SimpleMailChimpFactory::getByAPIKey('API_KEY_GOES_HERE');
Subscribing a user to a list
To subscribe a user to a list call the subscribe function and pass through the MailChimp list id and the user's email.
$simpleMailChimp->subscribe('LIST_ID_GOES_HERE', 'example@example.com');
If successful it will return an array containing the subscriber's data.
Unsubscribing a user from a list
To unsubscribe a user from a list call the unsubscribe function and pass through the MailChimp list id and the user's email.
$simpleMailChimp->unsubscribe('LIST_ID_GOES_HERE', 'example@example.com');
If successful it will return an array containing the subscriber's data.
Getting a subscriber's details
To get the details of a specific subscriber from a list call the getSubscriberDetails function and pass through the MailChimp list id and the user's email.
$simpleMailChimp->getSubscriberDetails('LIST_ID_GOES_HERE', 'example@example.com');
If successful it will return an array containing the subscriber's data.
Checking to see if a subscriber is already on a list and subscribed
To see if a subscriber is already on a list and is subscribed call the isSubscribedToList function and pass through the MailChimp list id and the user's email.
$simpleMailChimp->isSubscribedToList('LIST_ID_GOES_HERE', 'example@example.com');
This function will return TRUE if the subscriber is found on the list AND is subscribed to it and return FALSE if either the user is not found on the list OR is in the list but set to unsubscribed.
Getting all the members of a list
To get all the members of a list call the getAllUsersInList function and pass through the MailChimp list id and a comma separated list of the specific fields you want to return. If no parameters are set it retrieves the member's email by default.
$simpleMailChimp->getAllUsersInList('LIST_ID_GOES_HERE');
Will return an array of emails belonging to members of the list specified.
$simpleMailChimp->getAllUsersInList('LIST_ID_GOES_HERE','email_address,status');
Will return an array of emails and the relevant statuses belonging to members of the list specified. Available parameters can be found on the MailChimp API documentation page (under 'Response body parameters' -> 'members' -> 'Show properties'): http://developer.mailchimp.com/documentation/mailchimp/reference/lists/members/#read-get_lists_list_id_members.
Note that this function returns all members of a list regardless of whether they are subscribed or not.
rapidwebltd/simplemailchimp 适用场景与选型建议
rapidwebltd/simplemailchimp 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 91 次下载、GitHub Stars 达 0, 最近一次更新时间为 2016 年 11 月 02 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「mailchimp」 「library」 「PHP Library」 「MailChimp library」 「PHP MailChimp library」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 rapidwebltd/simplemailchimp 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 rapidwebltd/simplemailchimp 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 rapidwebltd/simplemailchimp 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
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.
Inbox pattern process implementation for your Laravel Applications
Core library that defines common interfaces used by the rest of the intahwebz..
A very minimal Mailchimp integration for Symfony
统计信息
- 总下载量: 91
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 5
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: LGPL-3.0-only
- 更新时间: 2016-11-02
