Changeset c5e383e for app/Notifications
- Timestamp:
- 12/26/21 18:31:54 (3 years ago)
- Branches:
- master
- Parents:
- 62d01a6
- Location:
- app/Notifications
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
app/Notifications/ForgotPassword.php
r62d01a6 rc5e383e 45 45 return (new MailMessage) 46 46 ->greeting("Hello " . $this->user->name) 47 ->line("To c reate or change your password click on the button")47 ->line("To change your password click on the button") 48 48 ->line("Your security code is: " . $this->user->security_code ) 49 ->action("C reate Password", url("/auth/create-password/" . $this->user->id . "/" . $this->user->verify_token));49 ->action("Change Password", url("/auth/new-password/" . $this->user->id . "/" . $this->user->verify_token)); 50 50 } 51 51 -
app/Notifications/WelcomeUser.php
r62d01a6 rc5e383e 50 50 ->line("To create password for your account just click the button then create something good. :))") 51 51 ->line("NOTE: You have only 3 hours to create your password.") 52 ->action("Create Password", url("/auth/ create-password/" . $this->user->id . "/" . $this->user->verify_token));52 ->action("Create Password", url("/auth/new-password/" . $this->user->id . "/" . $this->user->verify_token)); 53 53 } 54 54
Note:
See TracChangeset
for help on using the changeset viewer.