uawdijnntqw1x1x1
IP : 216.73.216.76
Hostname : server.zoomride.app
Kernel : Linux server.zoomride.app 4.18.0-553.158.1.el8_10.x86_64 #1 SMP Wed Aug 26 03:18:33 EDT 2026 x86_64
Disable Function : None :)
OS : Linux
PATH:
/
home
/
zoomride2022
/
public_html
/
uslfranchise.com
/
009ae
/
..
/
..
/
syrpayment.com
/
app
/
Mail
/
UserEmail.php
/
/
<?php namespace App\Mail; use Illuminate\Bus\Queueable; use Illuminate\Mail\Mailable; use Illuminate\Queue\SerializesModels; class UserEmail extends Mailable { use Queueable, SerializesModels; public $first_name; public $email; public $mail_body; /** * Create a new message instance. * * @return void */ public function __construct($first_name, $subject, $mail_body) { $this->subject = $subject; $this->first_name = $first_name; $this->mail_body = $mail_body; } public function build() { return $this->view('mail-templates.user._user_mail')->with(['name' => $this->first_name, $this->subject, $this->mail_body]); } }
/home/zoomride2022/public_html/uslfranchise.com/009ae/../../syrpayment.com/app/Mail/UserEmail.php