🎨 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

@@ -0,0 +1,34 @@
<?php
namespace App\Listeners;
use App\Jobs\SendWelcomeEmail;
use App\User;
use Illuminate\Auth\Events\Registered;
use Illuminate\Support\Carbon;
class SendWelcomeNotification
{
/**
* Create the event listener.
*
* @return void
*/
public function __construct()
{
//
}
/**
* Handle the event.
*
* @param \Illuminate\Auth\Events\Registered $event
*
* @return void
*/
public function handle(Registered $event)
{
$emailJob = (new SendWelcomeEmail($event->user))->delay(Carbon::now()->addSeconds(3));
dispatch($emailJob);
}
}