diff --git a/src/Notifications/StorageRequestExpiresSoon.php b/src/Notifications/StorageRequestExpiresSoon.php index 4c62511..36b27e8 100644 --- a/src/Notifications/StorageRequestExpiresSoon.php +++ b/src/Notifications/StorageRequestExpiresSoon.php @@ -72,7 +72,7 @@ public function toMail($notifiable) $message = (new MailMessage) ->subject('Your BIIGLE storage request will expire soon') - ->line("Your storage request will expire {$diff}.") + ->line("Your storage request will expire {$diff} unless you extend it.") ->action("View storage request", route('index-storage-requests')); return $message; @@ -90,7 +90,7 @@ public function toArray($notifiable) $array = [ 'title' => 'Your storage request will expire soon', - 'message' => "Your storage request will expire {$diff}.", + 'message' => "Your storage request will expire {$diff} unless you extend it.", 'action' => 'View storage request', 'actionLink' => route('index-storage-requests'), ];