mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-11 16:14:18 -08:00
15 lines
249 B
PHP
15 lines
249 B
PHP
|
<?php
|
||
|
namespace App\Models\Recipients;
|
||
|
|
||
|
use App\Models\Setting;
|
||
|
|
||
|
class AdminRecipient extends Recipient{
|
||
|
|
||
|
public function __construct()
|
||
|
{
|
||
|
$settings = Setting::getSettings();
|
||
|
$this->email = $settings->admin_cc_email;
|
||
|
}
|
||
|
|
||
|
}
|