popov / zfc-sparkpost
Adapter for sending messages through SparkPost service
dev-master
2017-08-09 19:23 UTC
Requires
- php: >=5.5
This package is not auto-updated.
Last update: 2025-01-19 06:02:44 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,
]
],
]