marko/mail-log

Log driver for Marko Framework Mail

Maintainers

Package info

github.com/marko-php/marko-mail-log

Type:marko-module

pkg:composer/marko/mail-log

Statistics

Installs: 0

Dependents: 0

Suggesters: 1

Stars: 0

0.0.1 2026-03-25 17:53 UTC

This package is auto-updated.

Last update: 2026-03-25 21:07:36 UTC


README

Log-based mail driver--writes emails to the log instead of sending them, ideal for development and testing.

Installation

composer require marko/mail-log

Quick Example

use Marko\Mail\Contracts\MailerInterface;
use Marko\Mail\Log\LogMailer;

return [
    'bindings' => [
        MailerInterface::class => LogMailer::class,
    ],
];

Documentation

Full usage, API reference, and examples: marko/mail-log