Skip to content

Commit 342396b

Browse files
committed
Add app name to invitation
1 parent 834e259 commit 342396b

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/Notifications/UserInvitationNotification.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ public function toMail(User $notifiable): MailMessage
4141
$url = GenerateSignedRegistrationUri::run(user: $notifiable);
4242

4343
return (new MailMessage)
44-
->subject(__('Welcome to Our Platform'))
44+
->subject(__('Welcome to :appName', ['appName' => config('app.name', 'Backstagephp')]))
4545
->greeting(__('Hello :name!', ['name' => $notifiable->getAttribute('name')]))
4646
->line(__('We are excited to have you on board.'))
4747
->action(__('Register'), $url)

0 commit comments

Comments
 (0)