mirror of
https://gh.wpcy.net/https://github.com/rilustrisimo/freescout-support.git
synced 2026-04-24 13:42:18 +08:00
18 lines
247 B
PHP
18 lines
247 B
PHP
<?php
|
|
|
|
namespace App\Observers;
|
|
|
|
use App\Email;
|
|
|
|
class EmailObserver
|
|
{
|
|
/**
|
|
* Email created.
|
|
*
|
|
* @param User $user
|
|
*/
|
|
public function created(Email $email)
|
|
{
|
|
\Eventy::action('email.created', $email);
|
|
}
|
|
}
|