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
/
talentorbit.codeskitter.site
/
app
/
Mail
/
JobSeekerRjectedMailable.php
/
/
<?php namespace App\Mail; use Illuminate\Mail\Mailable; use Illuminate\Queue\SerializesModels; class JobSeekerRejectedMailable extends Mailable { use SerializesModels; public $job; public $jobApplyRejected; /** * Create a new message instance. * * @return void */ public function __construct($job, $jobApplyRejected) { $this->job = $job; $this->jobApplyRejected = $jobApplyRejected; } /** * Build the message. * * @return $this */ public function build() { $company = $this->job->getCompany(); $user = $this->jobApplyRejected->getUser(); $recipientAddress = config('mail.recieve_to.address'); $recipientName = config('mail.recieve_to.name'); return $this->from([ 'address' => $recipientAddress, 'name' => $recipientName, ]) ->replyTo($recipientAddress, $recipientName) ->to($user->email, $user->name) ->subject($user->name . ' you have been rejected for the job "' . $this->job->title) ->view('emails.job_seeker_rejected_message') ->with([ 'job_title' => $this->job->title, 'company_name' => $company->name, 'user_name' => $user->name, 'company_link' => route('company.detail', $company->slug), 'job_link' => route('job.detail', [$this->job->slug]) ]); } }
/home/users/unlimited/www/talentorbit.codeskitter.site/app/Mail/JobSeekerRjectedMailable.php