somehow-digital / craft-mailpit
Mailpit integration for Craft CMS.
Package info
github.com/somehow-digital/craft-mailpit
Type:craft-plugin
pkg:composer/somehow-digital/craft-mailpit
v1.0.1
2026-03-15 17:45 UTC
Requires
- php: ^8.2.0
- craftcms/cms: ^5.8.0
Requires (Dev)
- phpstan/phpstan: ^2.1.33
- roave/security-advisories: dev-latest
- symplify/easy-coding-standard: ^13.0.4
This package is auto-updated.
Last update: 2026-03-15 17:45:40 UTC
README
Mailpit for Craft CMS
Features
- Display the Mailpit web interface in a dedicated Control Panel section or as Utility.
- Unread message count badge in the sidebar navigation or utility icon.
- Simple configuration with support for environment variables.
Requirements
- Craft CMS 5.8.0 or later.
- PHP 8.2 or later.
Installation
Install this plugin from the Plugin Store or via Composer.
Plugin Store
Go to the “Plugin Store” in your project’s Control Panel, search for “Mailpit” and click on the “Install” button in its modal window.
Composer
composer require somehow-digital/craft-mailpit ./craft plugin/install mailpit
Configuration
You can configure the plugin in the Control Panel under Settings → Mailpit, or by creating a config/mailpit.php file:
<?php return [ 'host' => App::env('MAILPIT_HOST'), 'type' => App::env('MAILPIT_TYPE'), // 'page' or 'utility' ];