mailcore-laravel maintained by inboxcom
inboxcom/mailcore-laravel
Laravel bridge for the Mailcore mail-server control API — a service provider, config, and facade around the inboxcom/mailcore-php core client.
Unofficial. Third-party package; not published by Mailcore.
AI-assisted. Code, tests, and docs were written largely by AI (Claude Code) under human direction and review.
Install
composer require inboxcom/mailcore-laravel
Requires PHP >= 8.4. The service provider is auto-discovered.
Configuration
Set your key in .env:
MAILCORE_API_KEY=your-api-key
# MAILCORE_BASE_URI=https://api.example.com # optional
To customise more, publish the config:
php artisan vendor:publish --tag=mailcore-config
Usage
Via the facade:
use Inboxcom\Mailcore\Laravel\Facades\Mailcore;
$users = Mailcore::users()->list(filter: '*');
$user = Mailcore::users()->get('holger@example.com');
…or resolve the client from the container (constructor injection, app(), etc.):
use Inboxcom\Mailcore\MailcoreClient;
public function __construct(private MailcoreClient $mailcore) {}
See the core package for the full client surface and error handling. Every non-2xx response throws a subclass of Inboxcom\Mailcore\Exception\ApiException; the API key is never included in any exception message.
Development & full docs
This package is developed in the Fjordmail/mailcore-sdk monorepo (this repository is a read-only subtree split). Issues and contributions belong there.
License
MIT — see LICENSE.