My Mautic version is: 4.2.2
My PHP version is:7.4
My Database type and version is: Mariadb 10.5
How should email be handled?–>Immediately
Default Frequency Rule–>Do not send me more than–>100 per day.
CronJob as below
*/3 * * * * /bin/bash /usr/local/bin/mauticgymcrons.sh
#!/bin/bash
MAUTICCONSOLE="/var/www/html/mautic/bin/console"
if [ -z “$(ls -A /var/www/html/mautic/var/spool)” ]; then
php $MAUTICCONSOLE mautic:broadcasts:send --limit=2
php $MAUTICCONSOLE mautic:campaigns:rebuild --batch-limit=300
php $MAUTICCONSOLE mautic:segment:update --batch-limit=900
php $MAUTICCONSOLE mautic:campaigns:trigger --campaign-limit=2
php $MAUTICCONSOLE mautic:import --limit=500
php $MAUTICCONSOLE mautic:webhooks:process
php $MAUTICCONSOLE mautic:reports:scheduler
php $MAUTICCONSOLE mautic:email:fetch
php $MAUTICCONSOLE mautic:maintenance:cleanup –days-old=365
else
php $MAUTICCONSOLE mautic:broadcasts:send --limit=3
php $MAUTICCONSOLE mautic:emails:send --message-limit=200
php $MAUTICCONSOLE mautic:email:fetch
fi
All the emails are sent to my test email Why Mautic shows 100% Failed? and
see below
The first email G1 is no problem. G2 and G3 all emails actually are sent out successfully. Why it shows 100% Failed Percent?