mirror of
https://github.com/snipe/snipe-it.git
synced 2025-01-05 10:57:28 -08:00
14 lines
205 B
PHP
14 lines
205 B
PHP
<?php
|
|
namespace App\Models\Recipients;
|
|
|
|
use App\Models\Setting;
|
|
|
|
class AlertRecipient extends Recipient{
|
|
|
|
public function __construct(string $email)
|
|
{
|
|
$this->email = trim($email);
|
|
}
|
|
|
|
}
|