sammaye/

monolog-laravel-swiftmailer-handler

用于Laravel的Monolog Swiftmailer处理器

dev-master 2020-07-02 16:17 UTC

This package is auto-updated.

Last update: 2024-08-29 04:37:27 UTC


README

一个连接Laravel、Monolog和Swiftmailer的处理器。

要使用它,只需将其作为日志通道包含即可

'email' => [
    'driver' => 'custom',
    'via' => \sammaye\MonologSwiftMailerHandler\Handler::class,
    'from' => [
        'address' => env('MAIL_LOG_FROM_ADDRESS', 'hello@example.com'),
        'name' => env('MAIL_LOG_FROM_NAME', 'Example'),
    ],
    'to' => env('MAIL_LOG_EMAIL_ADDRESS', 'hello@example.com'),
],

就这么简单。