Cron jobs are essential for Senddera to send emails, manage bounces, and run automation tasks in the background.
Without cron jobs, Senddera cannot process scheduled campaigns or run automations. You must set up a master cron job that triggers every minute.
Senddera uses a single entry point for all background tasks. The command looks like this:
* * * * * php /path/to/your/senddera/artisan schedule:run >> /dev/null 2>&1
www-data user:
sudo crontab -u www-data -e
* * * * * php /var/www/senddera/artisan schedule:run >> /dev/null 2>&1
* * * * *)./usr/local/bin/php /home/username/public_html/artisan schedule:run >> /dev/null 2>&1
Note: Replace /home/username/public_html/ with the actual path to your Senddera installation. You can find this in the cPanel File Manager.
In the Senddera admin dashboard, navigate to Settings > System Status. You will see a "Cron Job Status" indicator. If it shows green, your cron job is running correctly.