A simple PHP (8.1+) client for Mailhog.
- As little dependencies as possible
- Simple single client for both Mailhog V1 API as well as Mailhog V2 API
- Integration tests on all endpoints, both happy path and failure paths
This package does not require any specific HTTP client implementation, but is based on HTTPlug, so you can inject your own HTTP client of choice. So you when you install this library make sure you either already have an HTTP client installed, or install one at the same time as installing this library, otherwise installation will fail.
composer require rpkamp/mailhog-client <your-http-client-of-choice>
For more information please refer to the HTTPlug documentation for Library Users.
<?php
use rpkamp\Mailhog\MailhogClient;
$client = new MailhogClient(new SomeHttpClient(), new SomeRequestFactory(), 'http://my.mailhog.host:port/');
Where SomeHttpClient
is a class that implements Http\Client\HttpClient
from HTTPlug and SomeMessageFactory
is a class that implements Http\Message\RequestFactory
from HTTPlug, and my.mailhog.host
is the hostname (or IP) where mailhog is running, and port
is the port where the mailhog API is running (by default 8025).
Make sure you have Mailhog running and run:
make test
You can either run your own instance of Mailhog or use the provided Dockerfile to run one for you. To run Mailhog with Docker make sure you have Docker insalled and run:
docker-compose up -d
To prevent port collissions with any other Mailhog instances while testing the tests expect Mailhog to listen to SMTP on port 2025 (instead of the default 1025) and to HTTP traffic on port 9025 (instead of the default 8025).
If you want different ports you can copy phpunit.xml.dist
to phpunit.xml
and change the port numbers in the environment variables therein.