webshell
Ghost Exploiter Team Official
Mass Deface
Directory >>
/
home
/
aminiwrc
/
public_html11
/
job-listing
/
app
/
Mail
/
Mass Deface Auto Detect Domain
/*Ubah Ke document_root untuk mass deface*/
File / Folder
Size
Action
.
-
+New File
ContactMail.php
0.851KB
edt
ren
ReceivedApplication.php
1.021KB
edt
ren
<?php namespace App\Mail; use Illuminate\Bus\Queueable; use Illuminate\Mail\Mailable; use Illuminate\Queue\SerializesModels; use Illuminate\Contracts\Queue\ShouldQueue; use App\Traits\SmtpSettings; use App\JobApplication; use Illuminate\Support\Facades\Config; class ReceivedApplication extends Mailable { use Queueable, SerializesModels, SmtpSettings; public $jobApplication; /** * Create a new message instance. * * @return void */ public function __construct(JobApplication $jobApplication, $global) { $this->jobApplication = $jobApplication; $this->global = $global; $this->setMailConfigs(); } /** * Build the message. * * @return $this */ public function build() { return $this->subject(__('email.applicationReceived.subject')) ->from(Config::get('mail.from.address'), $this->global->company_name) ->to($this->jobApplication->email) ->markdown('email.received_application'); } }