65 lines
1.6 KiB
PHP
65 lines
1.6 KiB
PHP
<?php
|
|
|
|
namespace App\Notifications;
|
|
|
|
use Illuminate\Bus\Queueable;
|
|
use Illuminate\Contracts\Queue\ShouldQueue;
|
|
use Illuminate\Notifications\Messages\MailMessage;
|
|
use Illuminate\Notifications\Notification;
|
|
use Illuminate\Support\Carbon;
|
|
use Illuminate\Support\Facades\Config;
|
|
use Illuminate\Support\Facades\URL;
|
|
|
|
class VerifyEmailNotification extends Notification
|
|
{
|
|
use Queueable;
|
|
|
|
protected $verificationUrl;
|
|
|
|
/**
|
|
* Create a new notification instance.
|
|
*/
|
|
public function __construct($verificationUrl)
|
|
{
|
|
$this->verificationUrl = $verificationUrl;
|
|
}
|
|
|
|
/**
|
|
* Get the notification's delivery channels.
|
|
*
|
|
* @return array<int, string>
|
|
*/
|
|
public function via(object $notifiable): array
|
|
{
|
|
return ['mail'];
|
|
}
|
|
|
|
/**
|
|
* Get the mail representation of the notification.
|
|
*/
|
|
public function toMail(object $notifiable): MailMessage
|
|
{
|
|
$appName = config('app.name', 'Project Jahit');
|
|
|
|
return (new MailMessage)
|
|
->subject('Verifikasi Email - ' . $appName)
|
|
->view('emails.verify-email', [
|
|
'url' => $this->verificationUrl,
|
|
'name' => $notifiable->name,
|
|
'appName' => $appName,
|
|
'expiresIn' => '60 menit'
|
|
]);
|
|
}
|
|
|
|
/**
|
|
* Get the array representation of the notification.
|
|
*
|
|
* @return array<string, mixed>
|
|
*/
|
|
public function toArray(object $notifiable): array
|
|
{
|
|
return [
|
|
'verification_url' => $this->verificationUrl,
|
|
];
|
|
}
|
|
}
|