uawdijnntqw1x1x1
IP : 216.73.216.93
Hostname : panel.codeskitter.com
Kernel : Linux panel.codeskitter.com 6.8.0-100-generic #100-Ubuntu SMP PREEMPT_DYNAMIC Tue Jan 13 16:40:06 UTC 2026 x86_64
Disable Function : apache_child_terminate, apache_note, apache_setenv, define_syslog_variables, dl, link, opcache_get_status, openlog, pcntl_exec, pcntl_fork, pcntl_setpriority, popen, posix_getpwuid, posix_kill, posix_mkfifo, posix_setpgid, posix_setsid, posix_setuid
OS : Linux
PATH:
/
home
/
users
/
unlimited
/
www
/
ultimate-ai.codeskitter.site
/
app
/
Jobs
/
SendConfirmationEmail.php
/
/
<?php namespace App\Jobs; use App\Mail\ConfirmationEmail; use App\Models\EmailTemplates; use App\Models\Setting; use App\Models\User; use Illuminate\Bus\Queueable; use Illuminate\Contracts\Queue\ShouldQueue; use Illuminate\Foundation\Bus\Dispatchable; use Illuminate\Queue\InteractsWithQueue; use Illuminate\Queue\Middleware\WithoutOverlapping; use Illuminate\Queue\SerializesModels; use Illuminate\Support\Facades\Mail; class SendConfirmationEmail implements ShouldQueue { use Dispatchable; use InteractsWithQueue; use Queueable; use SerializesModels; protected $user; protected $settings; protected $template; public function __construct(User $user) { $this->user = $user; $this->settings = Setting::getCache(); $this->template = EmailTemplates::where('id', 1)->first(); } public function handle(): void { Mail::to($this->user->email) ->send(new ConfirmationEmail($this->user, $this->settings, $this->template)); } public function middleware(): array { return [new WithoutOverlapping($this->user->id)]; } }
/home/users/unlimited/www/ultimate-ai.codeskitter.site/app/Jobs/SendConfirmationEmail.php