diff --git a/app/Console/Commands/SendReminders.php b/app/Console/Commands/SendReminders.php index d5eb93b1663d..e42092c57259 100644 --- a/app/Console/Commands/SendReminders.php +++ b/app/Console/Commands/SendReminders.php @@ -152,7 +152,7 @@ class SendReminders extends Command private function sendReminderEmails() { $accounts = $this->accountRepo->findWithReminders(); - $this->info(date('r ') . count($accounts) . ' accounts found with reminders'); + $this->info(date('r ') . count($accounts) . ' accounts found with reminders enabled'); foreach ($accounts as $account) { if (! $account->hasFeature(FEATURE_EMAIL_TEMPLATES_REMINDERS)) {