承接 splattner/mailmanapi 相关项目开发

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

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

splattner/mailmanapi

最新稳定版本:1.2.0

Composer 安装命令:

composer require splattner/mailmanapi

包简介

A simple API to work with Mailman 2.x Mailing Lists

README 文档

README

A Simple PHP API to work with Mailman 2.x Mailinglists

As Mailman 2.x seems not to offer a proper API, this Mailman API provides some basic functionality to work with Mailman. Be aware, the library only wrappes around the HTML Forms of the Mailman API Site. It parses the HTTP Responses & HTML Pages, for Authentication Cookies, CSRF TOKEN and then posts to the FORM action url.

Testes with Mailman 2.1.20, no guarantee to work with other versions.

Features

  • Get all Members of a Maillist
  • Add Members to a Maillist
  • Remove Members from a Maillist
  • Change Address of a Member

Requirements

  • Socket enabled or curl extension installed
  • PHP 5.3+

Installation

composer require splattner/mailmanapi:^1.2

Usage

You need the URL for your Mailman Mailist e.g. http://{{domain}}/mailman/admin/{{maillistName}} and your Administration Password for the Maillist.

Get All Members

$mailman = new MailmanAPI($mailManBaseURL,$adminPW);
$allMembers = $mailman->getMemberlist();

Add Members

$mailman = new MailmanAPI($mailManBaseURL,$adminPW);
$mailman->addMembers(["member1@domain.com","member2@domain.com"]);

Remove Members

$mailman = new MailmanAPI($mailManBaseURL,$adminPW);
$mailman->removeMembers(["member1@domain.com","member2@domain.com"]);

Change Member

$mailman = new MailmanAPI($mailManBaseURL,$adminPW);
$mailman->changeMember("memberold@domain.com","membernew@domain.com");

统计信息

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

GitHub 信息

  • Stars: 5
  • Watchers: 1
  • Forks: 10
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2017-10-19