From 59e4def2f19de00ae1beb40387f64d4213e19537 Mon Sep 17 00:00:00 2001 From: Bohdan Shulha Date: Sat, 14 Sep 2024 22:06:02 +0200 Subject: [PATCH] feat: #192 correct wording in a trial ends notification --- app/Notifications/TrialEndsSoonNotification.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/Notifications/TrialEndsSoonNotification.php b/app/Notifications/TrialEndsSoonNotification.php index 3241073..2b4ace3 100644 --- a/app/Notifications/TrialEndsSoonNotification.php +++ b/app/Notifications/TrialEndsSoonNotification.php @@ -48,8 +48,8 @@ public function toMail(object $notifiable): MailMessage ->subject("Your free trial ends in {$dateDiff}") ->greeting("Hello {$this->team->customer->name}!") ->line('Your trial for team '.$this->team->name.' ends soon.') - ->line("You will be charged {$nextPayment->amount()} on {$nextPayment->date->toDateTimeString()} ({$dateDiff}).") - ->action('Manage Subscription', url(route('teams.billing.show', $this->team))) + ->line("You will be not able to use Ptah.sh after {$nextPayment->date->toDateTimeString()} ({$dateDiff}).") + ->action('Choose a Plan', url(route('teams.billing.show', $this->team))) ->line('Any other questions? Contact us at '.config('app.email')); }