Hello,
I have built a site using php/mysql running on Linux Red Hat 7.2.
I need a program to talk to the mysql database and send out some emails to some users automatically.
People have told me to run the process as a crontab job.
Any other possibilities for scheduling the process to run?
The process needs to read/write the MYSQL database and then send out emails.
So far I've come up with two choices
1. PHP commandline script which has mysql/mail support.
2. C program which has mysql support, but I need to write an SMTP mailer?
Does anyone see any problems/advantages with using either of the above?
Regards
Bob