tell firewall that too many emails were sent

This commit is contained in:
Denis Duliçi
2023-03-25 14:27:55 +03:00
parent fd8b6c15b5
commit 70ab665c89
6 changed files with 206 additions and 99 deletions

View File

@@ -0,0 +1,15 @@
<?php
namespace App\Events\Email;
use App\Abstracts\Event;
class TooManyEmailsSent extends Event
{
public $user_id;
public function __construct(int $user_id)
{
$this->user_id = $user_id;
}
}