JFIF x x C C " } !1AQa "q2#BR$3br %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz w !1AQ aq"2B #3Rbr{
File "UserForgetPasswordForOTP.php"
Full Path: /var/www/laravel_filter/app/Mail/UserForgetPasswordForOTP.php
File size: 738 bytes
MIME-type: text/x-php
Charset: utf-8
<?php
namespace App\Mail;
use Illuminate\Bus\Queueable;
use Illuminate\Contracts\Queue\ShouldQueue;
use Illuminate\Mail\Mailable;
use Illuminate\Queue\SerializesModels;
class UserForgetPasswordForOTP extends Mailable
{
use Queueable, SerializesModels;
public $template;
public $subject;
public $user;
public function __construct($template,$subject,$user)
{
$this->template=$template;
$this->subject=$subject;
$this->user=$user;
}
public function build()
{
$template = $this->template;
$subject = $this->subject;
$user = $this->user;
return $this->subject($this->subject)->view('user_reset_mail_for_otp', compact('template','user'));
}
}