Edit this page

Simulating Sending Email

During development, you probably don't want to actually send an email, so instead of really sending email, you can simulate sending by dumping information about email to log.

Configuration

return [
    'simulate' => [
        'enabled' => true,
        'adapter_class' => '\Koldy\Mail\Adapter\Simulate'
    ]
];

← Back To Mail