Файловый менеджер - Редактировать - /home/clickysoft/public_html/travel-guru.clickysoft.net/app/Notifications/PasswordResetNotification.php
Назад
<?php namespace App\Notifications; use Illuminate\Bus\Queueable; use Illuminate\Contracts\Queue\ShouldQueue; use Illuminate\Notifications\Messages\MailMessage; use Illuminate\Notifications\Notification; class PasswordResetNotification extends Notification { use Queueable; /** * Create a new notification instance. */ public function __construct(public $token, public $email) { $this->token = $token; $this->email = $email; } /** * 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($notifiable) { $frontUrl = env('APP_FRONT_URL', 'https://bluewater.clickysoft.app'); return (new MailMessage) ->subject('Reset Password Notification') ->line('You are receiving this email because we received a password reset request for your account.') ->action('Reset Password', url($frontUrl . '/reset-password?token=' . $this->token . '&email=' . urlencode($this->email))) ->line('This password reset link will expire in 60 minutes.'); } /** * Get the array representation of the notification. * * @return array<string, mixed> */ public function toArray(object $notifiable): array { return [ // ]; } }
| ver. 1.4 |
Github
|
.
| PHP 8.1.29 | Генерация страницы: 0 |
proxy
|
phpinfo
|
Настройка