ok
This commit is contained in:
14
Production/SNIPE-IT/app/Models/Recipients/AdminRecipient.php
Normal file
14
Production/SNIPE-IT/app/Models/Recipients/AdminRecipient.php
Normal file
@ -0,0 +1,14 @@
|
||||
<?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);
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user