create_email_notifications.cron.php

yametesenpai

Member
YetiShare User
Oct 26, 2020
56
7
8
Hi, should I run create_email_notifications.cron.php cron every day at 1AM?
Here is the cron settings in the docs:
(0) (1) (*) (*) (*)

@adam Thanks
 

shelly

New Member
Jun 17, 2022
1
0
0
To run the create_email_notifications.cron.php cron job every day at 1 AM, use the following cron format:


0 1 * * * php /path/to/your/script/create_email_notifications.cron.php

This configuration will execute the PHP script create_email_notifications.cron.php at 1:00 AM every day. Just replace /path/to/your/script with the actual path to the directory where your PHP script is located.