mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-20 04:24:23 -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);
|
|
}
|
|
|
|
}
|