A quick package for the Laravel aficionados out there, this one adds support for using Brevo (formerly SendInBlue) as the application mailer. This means all you have to do is add your api token to your .env file, change one setting and away you go!
composer require evo-mark/evo-laravel-brevo
Your Laravel application should now automatically load the package’s service provider.
Setup
// .env
MAIL_MAILER=brevoMAIL_FROM_ADDRESS="example@example.com"MAIL_FROM_NAME="Example"BREVO_API_KEY="<your api token here>"
// config/mail.php
'mailers' => [ 'brevo' => [ 'transport' => 'brevo', ],]
and there you have it. Your transactional mail will now send through your Brevo account.