iwalkalone / mailman-api
PHP library to interact with Mailman 3 Servers API.
v1.1
2026-06-28 12:56 UTC
Requires
- iwalkalone/curl: 1.2
This package is not auto-updated.
Last update: 2026-06-28 22:32:48 UTC
README
Description
It implements Mailman 3 API. Currently supports:
- Get a list of domains
- Get a list of mailing lists (all domains or a single domain)
- Get a list of members of a mailing list
- Get a single member of a mailing list
- Adding a new member to a mailing list
- Removing a member from a mailing list
Install
Install with composer:
composer require iwalkalone/mailman-api
Or a specific version:
composer require iwalkalone/mailman-api ^1.0
How to use it
$mailman = new \iwalkalone\Mailman3API('127.0.0.1', '8001', 'user', 'password');
$domains = $mailman->getDomains();
print_r($domains);