mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-10 23:54:12 -08:00
15 lines
244 B
PHP
15 lines
244 B
PHP
|
<?php
|
||
|
namespace App\Models\Recipients;
|
||
|
|
||
|
use App\Models\Setting;
|
||
|
|
||
|
class AlertRecipient extends Recipient{
|
||
|
|
||
|
public function __construct()
|
||
|
{
|
||
|
$settings = Setting::getSettings();
|
||
|
$this->email = $settings->alert_email;
|
||
|
}
|
||
|
|
||
|
}
|