承接 rapidwebltd/simplemailchimp 相关项目开发

从需求分析到上线部署,全程专人跟进,保证项目质量与交付效率

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

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.

Simple MailChimp usage

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 我们能提供哪些服务?
定制开发 / 二次开发

基于 rapidwebltd/simplemailchimp 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。

BUG 修复 & 性能优化

线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。

项目外包 & 长期维护

承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。

yvsm@zunyunkeji.com QQ:316430983 微信:yvsm316 西安尊云信息科技 · 专注 PHP / Go / 分布式系统研发

统计信息

  • 总下载量: 91
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 0
  • 点击次数: 5
  • 依赖项目数: 0
  • 推荐数: 0

GitHub 信息

  • Stars: 0
  • Watchers: 5
  • Forks: 0
  • 开发语言: PHP

其他信息

  • 授权协议: LGPL-3.0-only
  • 更新时间: 2016-11-02