⚝
One Hat Cyber Team
⚝
Your IP:
216.73.216.133
Server IP:
185.119.109.197
Server:
Linux managedhosting.chostar.me 5.15.0-160-generic #170-Ubuntu SMP Wed Oct 1 10:06:56 UTC 2025 x86_64
Server Software:
Apache
PHP Version:
8.1.33
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
home
/
cleanexg
/
public_html
/
core
/
app
/
Jobs
/
View File Name :
SubscriptionReminderMail.php
be = $be; $this->bex = $bex; $this->bs = $bs; $this->as = $as; } /** * Execute the job. * * @return void */ public function handle() { $be = $this->be; $bex = $this->bex; $bs = $this->bs; $as = $this->as; // Send Mail to Buyer $mailer = new KreativMailer; $data = [ 'toMail' => $as->email, 'toName' => $as->name, 'customer_name' => $as->name, 'remaining_days' => $bex->expiration_reminder, 'current_package_name' => $as->current_package->title, 'expire_date' => Carbon::parse($as->expire_date)->toFormattedDateString(), 'website_title' => $bs->website_title, 'templateType' => 'subscription_expiry_reminder', 'type' => 'subscriptionExpiryReminder' ]; $mailer->mailFromAdmin($data); } }