My Mautic version is:4.0.1
My PHP version is:7.4.26
My Database type and version is:5.5.68-MariaDB
My problem is:
Mautic Email Queue processing will cause email sending time to be very different from receiving time.
My settings are below. How should email be handled? Queue
Message limit for queue processing 2
Path to the email queue directory %kernel.root_dir%/…/var/spool
Recovery timeout for resending failed messages 900
Clear timeout for deleted failed messages 1800
0 0,12 * * * certbot renew --no-self-upgrade >/dev/null 2>&1
*/5 * * * * /usr/bin/php /var/www/html/bin/console mautic:segments:update >/dev/null 2>&1 #mautic-segments-cron
*/3 * * * * /usr/bin/php /var/www/html/bin/console mautic:campaigns:rebuild >/dev/null 2>&1 #mautic-campaings-rebuild-cron
*/3 * * * * /usr/bin/php /var/www/html/bin/console mautic:campaigns:trigger >/dev/null 2>&1 #mautic-campaigns-trigger-cron
*/4 * * * * /usr/bin/php /var/www/html/bin/console mautic:emails:send >/dev/null 2>&1 #mautic-email-send-cron
*/3 * * * * /usr/bin/php /var/www/html/bin/console mautic:broadcasts:send >/dev/null 2>&1 #broadcast send
*/15 * * * * /usr/bin/php /var/www/html/bin/console mautic:webhooks:process >/dev/null 2>&1 #mautic-webhooks-cron
0 0,12 * * * /usr/bin/php /var/www/html/bin/console mautic:reports:scheduler >/dev/null 2>&1 # generating reports
*/1 * * * * /usr/bin/php /var/www/html/bin/console mautic:email:fetch >/dev/null 2>&1 #fetching email from inbox
*/2 * * * * /usr/bin/php /var/www/html/bin/console mautic:import >/dev/null 2>&1 #import contacts in background
When Campaign emails are sent to 6 different emails at 09:00, Email inbox like below
First, two of the emails have arrived into inbox Time showing 09:04 at 09:04 my local time
the other two, time showing 09:04 at 09:08 my local time
The rest two, showing 09:04 at 09:12 of my local time
All the email sending time is the same for all receivers. This will be confusing for the receivers to see the email sending time is too outdated from their receiving time of inbox.
Anyone has met this issue?