Merge pull request #2663 from wderuijter/patch-1

Made clear what "account with reminders" means
This commit is contained in:
Hillel Coren 2019-02-11 12:47:17 +02:00 committed by GitHub
commit a0b85b491f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -152,7 +152,7 @@ class SendReminders extends Command
private function sendReminderEmails() private function sendReminderEmails()
{ {
$accounts = $this->accountRepo->findWithReminders(); $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) { foreach ($accounts as $account) {
if (! $account->hasFeature(FEATURE_EMAIL_TEMPLATES_REMINDERS)) { if (! $account->hasFeature(FEATURE_EMAIL_TEMPLATES_REMINDERS)) {