Sindbad~EG File Manager
<?php
namespace App\Notifications;
use Illuminate\Bus\Queueable;
use Illuminate\Notifications\Messages\MailMessage;
use Illuminate\Notifications\Notification;
class OTP extends Notification {
use Queueable;
/**
* Get the notification's delivery channels.
*
* @param mixed $notifiable
* @return array
*/
public function via($notifiable) {
return ['mail'];
}
/**
* Get the mail representation of the notification.
*
* @param mixed $notifiable
* @return \Illuminate\Notifications\Messages\MailMessage
*/
public function toMail($notifiable) {
return (new MailMessage)
->line('Your OTP code is: ' . $notifiable->otp)
->line('The code will expire in 5 minutes')
->line('If you did not try to make any action, ignore this message.');
}
}
Sindbad File Manager Version 1.0, Coded By Sindbad EG ~ The Terrorists