Skip to content

Latest commit

 

History

History
26 lines (18 loc) · 504 Bytes

File metadata and controls

26 lines (18 loc) · 504 Bytes

marko/mail-log

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