🎨 Ajoute le mail d'accueil

This commit is contained in:
Shikiryu
2019-09-25 15:25:22 +02:00
parent 1aa27066ad
commit 70afcacd21
5 changed files with 114 additions and 0 deletions

View File

@@ -2,6 +2,7 @@
namespace App\Providers;
use App\Listeners\SendWelcomeNotification;
use Illuminate\Auth\Events\Registered;
use Illuminate\Auth\Listeners\SendEmailVerificationNotification;
use Illuminate\Foundation\Support\Providers\EventServiceProvider as ServiceProvider;
@@ -17,6 +18,7 @@ class EventServiceProvider extends ServiceProvider
protected $listen = [
Registered::class => [
SendEmailVerificationNotification::class,
SendWelcomeNotification::class,
],
];