Preview: SendOtpMail.php
Size: 491 B
/home/getspomw/itechservicellc.com/app/Mail/SendOtpMail.php
<?php
namespace App\Mail;
use Illuminate\Bus\Queueable;
use Illuminate\Mail\Mailable;
use Illuminate\Queue\SerializesModels;
class SendOtpMail extends Mailable
{
use Queueable, SerializesModels;
public $otp;
public function __construct($otp)
{
$this->otp = $otp;
}
public function build()
{
return $this->subject('Your OTP Code')
->view('emails.send_otp')
->with(['otp' => $this->otp]);
}
}
Directory Contents
Dirs: 0 × Files: 5