netflex/notifications
Netflex Notifications Mail Driver for Laravel
2,319
| Install | |
|---|---|
composer require netflex/notifications |
|
| Latest Version: | v7.0.1 |
| PHP: | ^8.4 |
| License: | MIT |
| Last Updated: | Jun 3, 2026 |
| Links: | GitHub · Packagist |
Maintainer: thomas-alrek
Netflex Notifications
[READ ONLY] Subtree split of the Netflex Notification component (see netflex/framework)
Installation
composer require netflex/notifications
Setup
In config/mail.php:
[
'driver' => env('MAIL_DRIVER', 'netflex')
]
Usage
You can use this driver to send any Mailables. It also integrates with Laravels Notification system (and adds a 'sms' channel, just implement toSMS on your notification).
<?php
use App\Mail\OrderConfirmed;
Mail::to($request->user())->send(new OrderConfirmed($order));
It also supports the legacy Netflex mail templates:
<?php
use Netflex\Notifications\Notification;
Mail::to($request->user())->send(
Notification::resolve('order_confirmed', [
'firstname' => $order->customer_firstname
])
);
Related Packages
erirk/paypalpayment
laravel-paypalpayment is simple package help you process direct credit card paym...
0
doctrine/dbal
Powerful PHP database abstraction layer (DBAL) with many features for database s...
631,580,251
9,707