popov/zfc-sparkpost

Adapter for sending messages through SparkPost service

dev-master 2017-08-09 19:23 UTC

This package is not auto-updated.

Last update: 2024-04-28 02:11:08 UTC


README

Adapter for sending messages through SparkPost service

Configuration

In your local.php add/change next config

[
    'mail' => [
        'type' => 'sparkpost',
        'from' => 'ex@example.com',
        'options' => [
            'api_key' => 'your-api-key',
            'async' => false,
            'trackOpens' => false,
            'trackClicks' => false,
            'sandbox' => false,
            'inlineCss' => false,
            'transactional' => true,
        ]
    ],
]