{Ninja-Shell}
Home
Info
Upload
Command
View /etc/passwd
cPanel Reset Password
Filename: /var//www/arsu/app///Mail/DeliverymanPasswordResetMail.php
<?php namespace App\Mail; use Illuminate\Bus\Queueable; use Illuminate\Mail\Mailable; use Illuminate\Queue\SerializesModels; class DeliverymanPasswordResetMail extends Mailable { use Queueable, SerializesModels; /** * Create a new message instance. * * @return void */ protected $otp; public function __construct($otp) { $this->otp = $otp; } /** * Build the message. * * @return $this */ public function build() { $otp = $this->otp; return $this->subject(translate('Deliveryman_Password_Reset_Mail'))->view('email-templates.delivery-man-password-reset', ['otp' => $otp]); } }
./Ninja\.