How Do I send emails to group of persons daily at 12:00 AM ??
I have a PHP page where I will write code to sending mail.
I searched and find CRONTAB (shell scripting), a solution for this. If I want to use CRONTAB shell scripting then How I can created script ?

Recommended Answers

All 2 Replies

If you have cpanel, see "cron jobs" under Advanced.

All you have to do is to set it to run the script at the specific interval.

The easy way:
- Create at web page which does the task.
- Set up a cron job which downloads this page at times using wget or curl.
If you have php as a stand-alone application on your server (not only as a webserver module), you can directly call "php myscript.php" from your cronjob at certain times.
To create a cronjob in linux, enter "crontab -e" on the command line.

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.