PAMSIMAS_Gumuksari/PAMSIMAS_User/app/Mail/SendOtpMail.php

16 lines
436 B
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('Kode Verifikasi Pendaftaran PAMSIMAS')
->view('emails.otp_template');
}
}