25 lines
454 B
PHP
25 lines
454 B
PHP
<?php
|
|
|
|
namespace App\Mail;
|
|
|
|
use Illuminate\Bus\Queueable;
|
|
use Illuminate\Mail\Mailable;
|
|
use Illuminate\Queue\SerializesModels;
|
|
|
|
class LoginOtpMail extends Mailable
|
|
{
|
|
use Queueable, SerializesModels;
|
|
|
|
public $otp;
|
|
|
|
public function __construct($otp)
|
|
{
|
|
$this->otp = $otp;
|
|
}
|
|
|
|
public function build()
|
|
{
|
|
return $this->subject('Your Login Verification Code')
|
|
->markdown('emails.auth.otp');
|
|
}
|
|
} |