Skip to content

Commit

Permalink
feat: #192 correct wording in a trial ends notification
Browse files Browse the repository at this point in the history
  • Loading branch information
bohdan-shulha committed Sep 14, 2024
1 parent 1da130d commit 59e4def
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/Notifications/TrialEndsSoonNotification.php
Original file line number Diff line number Diff line change
Expand Up @@ -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'));
}

Expand Down

0 comments on commit 59e4def

Please sign in to comment.