Commit 10fb3f7 1 parent d9fd2da commit 10fb3f7 Copy full SHA for 10fb3f7
File tree 1 file changed +9
-5
lines changed
1 file changed +9
-5
lines changed Original file line number Diff line number Diff line change @@ -15,15 +15,19 @@ class Kernel extends ConsoleKernel
15
15
*/
16
16
protected function schedule (Schedule $ schedule )
17
17
{
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
+
18
24
$ 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 ();
20
27
$ schedule ->command ('mailcoach:send-campaign-summary-mail ' )->hourly ();
28
+ $ schedule ->command ('mailcoach:cleanup-processed-feedback ' )->hourly ();
21
29
$ schedule ->command ('mailcoach:send-email-list-summary-mail ' )->mondays ()->at ('9:00 ' );
22
30
$ 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 ();
27
31
}
28
32
29
33
/**
You can’t perform that action at this time.
0 commit comments