/home/techb158/immovalet.com/platform/core/acl/src/Notifications
NameSizeModeActions
ResetPasswordNotification.php15660644editdlrm
Edit: /home/techb158/immovalet.com/platform/core/acl/src/Notifications/ResetPasswordNotification.php (1566B)
token = $token; } /** * Get the notification's channels. * * @param mixed $notifiable * @return array|string */ public function via($notifiable) { return ['mail']; } /** * Build the mail representation of the notification. * * @param mixed $notifiable * @return MailMessage * @throws Throwable */ /** * Get the mail representation of the notification. * * @param mixed $notifiable * @return \Illuminate\Notifications\Messages\MailMessage */ public function toMail($notifiable) { EmailHandler::setModule('acl') ->setVariableValue('reset_link', route('access.password.reset', ['token' => $this->token])); $template = 'password-reminder'; $content = EmailHandler::prepareData(EmailHandler::getTemplateContent($template, 'core')); return (new MailMessage) ->view(['html' => new HtmlString($content)]) ->subject(EmailHandler::getTemplateSubject($template)); } }