Laravel's mail transport for SendinBlue
composer require webup/laravel-sendinblueCompatibility
| Version | Laravel | Sendinblue Api |
|---|---|---|
| 3.* | 7.0 and above | v3 |
| 2.* | 5.5 - 6.* | v3 |
| 1.1.* | 5.5 - 6.* | v2 |
| 1.0.* | 5.0 - 5.4 | v2 |
config/mail.php
'mailers' => [
// ...
'sendinblue' => [
'transport' => 'sendinblue',
],
]
config/services.php
'sendinblue' => [
// api-key or partner-key
'key_identifier' => env('SENDINBLUE_KEY_IDENTIFIER', 'api-key'),
'key' => env('SENDINBLUE_KEY'),
],
.env
MAIL_MAILER=sendinblue
SENDINBLUE_KEY=your-access-key