39 lines
701 B
PHP
39 lines
701 B
PHP
<?php
|
|
|
|
namespace App\Mail;
|
|
|
|
use Illuminate\Bus\Queueable;
|
|
use Illuminate\Mail\Mailable;
|
|
use Illuminate\Queue\SerializesModels;
|
|
|
|
class OtpMail extends Mailable
|
|
{
|
|
use Queueable, SerializesModels;
|
|
|
|
public $otp;
|
|
|
|
/**
|
|
* Create a new message instance.
|
|
*
|
|
* @param int $otp
|
|
*/
|
|
public function __construct($otp)
|
|
{
|
|
$this->otp = $otp;
|
|
}
|
|
|
|
/**
|
|
* Build the message.
|
|
*
|
|
* @return $this
|
|
*/
|
|
public function build()
|
|
{
|
|
return $this
|
|
->from(env('MAIL_FROM_ADDRESS', 'rifaulardiyanto@gmail.com'))
|
|
->subject('Kode OTP Anda')
|
|
->view('emails.otp')
|
|
->with(['otp' => $this->otp]);
|
|
}
|
|
}
|