I\'m running a PHP script in a cronjob and I want to send emails every 5 minutes
My current (crontab) cronjob:
10 * * * * /usr/bin/php /mydomain.in/c
You are setting your cron to run on 10th minute in every hour. To set it to every 5 mins change to */5 * * * * /usr/bin/php /mydomain.in/cronmail.php > /dev/null 2>&1
every 5 mins
*/5 * * * * /usr/bin/php /mydomain.in/cronmail.php > /dev/null 2>&1