Hello Joeyk
I installed my mautic instance following your script which is very convenient for me to deal with crob job setting up.
Thanks for your response. I have taken one week to solve the problems. But I can share my experience below in case of the same issues by other users.
php $MAUTICCONSOLE mautic:campaigns:trigger --kickoff-only --scheduled-only
Actually, trigger action includes two steps, firstly it will priority command (-kickoff-only) to finish all the fresh contact to initial scheduled sending event. Then It will execute the email sending ( --scheduled-only) based on the sending time.
So that’s why it showed the yellow tab"984" but did not send the email.
Also, we can limit the number of contact execution by the trigger after adding " --campaign-limit=2".
Why I do this because I want to limit the number of sending emails every day. Below is my campaign command part just limit the “–scheduled-only” is enough:
php $MAUTICCONSOLE mautic:campaigns:trigger --kickoff-only
php $MAUTICCONSOLE mautic:campaigns:trigger --scheduled-only --campaign-limit=2