diff --git a/BACKEND/Modules/Admin/app/Http/Controllers/TicketController.php b/BACKEND/Modules/Admin/app/Http/Controllers/TicketController.php index 5df9f9e..db9f89e 100644 --- a/BACKEND/Modules/Admin/app/Http/Controllers/TicketController.php +++ b/BACKEND/Modules/Admin/app/Http/Controllers/TicketController.php @@ -238,9 +238,6 @@ class TicketController extends Controller // Send notification email to admin (list) $admins = Admin::where('permission', 'admin')->get(); foreach ($admins as $key => $value) { - if ($value->email == "admin@apactech.io") { - continue; - } $data = array( "email_template" => "email.notification_tickets", "email" => $user->email, @@ -383,12 +380,6 @@ class TicketController extends Controller $this->createOrUpdateRecordForCurrentMonth($month, $year); // $admins = Admin::where('permission', 'admin')->get(); - // foreach ($admins as $key => $value) { - // if ($value->email == "admin@apactech.io") { - // continue; - // } - - // } // Send notification email to users $data = array( "email_template" => "email.notification_tickets_user",