You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
$this->info('No recipients found for the selected filters.');
62
+
$this->info(empty($emailList) ? 'No recipients found for the selected filters.' : 'No Excellence rows found for the given email list (edition/type may not match).');
50
63
returnself::SUCCESS;
51
64
}
52
65
66
+
if (! empty($emailList)) {
67
+
$this->info('Restricted to '.count($emailList).' email(s) from list; '.$totalToTest.' Excellence row(s) match.');
68
+
}
69
+
53
70
if ($limit > 0) {
54
71
$totalToTest = min($totalToTest, $limit);
55
72
}
@@ -178,6 +195,36 @@ public function handle(): int
178
195
returnself::SUCCESS;
179
196
}
180
197
198
+
/**
199
+
* @return array<string>|null Returns list of emails, or null on error (e.g. file not found).
0 commit comments