mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-10 07:34:06 -08:00
b6a1d245e8
Signed-off-by: snipe <snipe@snipe.net>
15 lines
255 B
PHP
15 lines
255 B
PHP
<?php
|
|
|
|
namespace App\Models\Recipients;
|
|
|
|
use App\Models\Setting;
|
|
|
|
class AdminRecipient extends Recipient
|
|
{
|
|
public function __construct()
|
|
{
|
|
$settings = Setting::getSettings();
|
|
$this->email = trim($settings->admin_cc_email);
|
|
}
|
|
}
|