Skip to content

Commit 10fb3f7

Browse files
authored
Update Kernel.php
1 parent d9fd2da commit 10fb3f7

File tree

1 file changed

+9
-5
lines changed

1 file changed

+9
-5
lines changed

app/Console/Kernel.php

+9-5
Original file line numberDiff line numberDiff line change
@@ -15,15 +15,19 @@ class Kernel extends ConsoleKernel
1515
*/
1616
protected function schedule(Schedule $schedule)
1717
{
18+
$schedule->command('mailcoach:send-automation-mails')->everyMinute()->withoutOverlapping()->runInBackground();
19+
$schedule->command('mailcoach:send-scheduled-campaigns')->everyMinute()->withoutOverlapping()->runInBackground();
20+
21+
$schedule->command('mailcoach:run-automation-triggers')->everyMinute()->runInBackground();
22+
$schedule->command('mailcoach:run-automation-actions')->everyMinute()->runInBackground();
23+
1824
$schedule->command('mailcoach:calculate-statistics')->everyMinute();
19-
$schedule->command('mailcoach:send-scheduled-campaigns')->everyMinute();
25+
$schedule->command('mailcoach:calculate-automation-mail-statistics')->everyMinute();
26+
$schedule->command('mailcoach:rescue-sending-campaigns')->hourly();
2027
$schedule->command('mailcoach:send-campaign-summary-mail')->hourly();
28+
$schedule->command('mailcoach:cleanup-processed-feedback')->hourly();
2129
$schedule->command('mailcoach:send-email-list-summary-mail')->mondays()->at('9:00');
2230
$schedule->command('mailcoach:delete-old-unconfirmed-subscribers')->daily();
23-
$schedule->command('mailcoach:cleanup-processed-feedback')->hourly();
24-
$schedule->command('mailcoach:run-automation-triggers')->everyMinute()->runInBackground();
25-
$schedule->command('mailcoach:run-automation-actions')->everyMinute()->runInBackground();
26-
$schedule->command('mailcoach:calculate-automation-mail-statistics')->everyMinute();
2731
}
2832

2933
/**

0 commit comments

Comments
 (0)