Skip to content
This repository has been archived by the owner on Jul 28, 2021. It is now read-only.

TepuiLABS/sendinblue

Repository files navigation

custom email provider

Latest Version on Packagist GitHub Tests Action Status Total Downloads

Installation

You can install the package via composer:

composer require tepuilabs/sendinblue

Then add:

  • SENDINBLUE_API_KEY to your env

Add this to your config/mail.php file

'mailers' => [
    ...

	'sendinblue' => [
		'transport' => 'sendinblue',
	],
],

Sending Mail Via A Specific Mailer

Mail::mailer('sendinblue')
    ->to($request->user())
    ->send(new OrderShipped($order));

Testing

composer test

Changelog

Please see CHANGELOG for more information on what has changed recently.

Contributing

Please see CONTRIBUTING for details.

Security Vulnerabilities

Please review our security policy on how to report security vulnerabilities.

Credits

License

The MIT License (MIT). Please see License File for more information.