Skip to content

Commit

Permalink
fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
Albert Botashev committed Oct 11, 2021
1 parent 903f59d commit 74aa509
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/src/Command/SendRemindersCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -76,8 +76,8 @@ protected function execute(InputInterface $input, OutputInterface $output)
->to($email)
->subject('Renewal date is coming')
->text(sprintf(
"Hello dear client!\nYour insurance %s is expiring\nPlease contact me\nRenewal Date: %s",
$item->getName(), $item->getRenewalDate()->format('m/d/Y H:i:s'))
"Hello dear user!\n%s’s policy %s is expiring on %s.\n",
$client->getName(), $item->getName(), $item->getRenewalDate()->format('m/d/Y H:i:s'))
);

$this->mailer->send($email);
Expand Down

0 comments on commit 74aa509

Please sign in to comment.