I want to automate the emailing the members under certain events or certain day to inform day dynamically? some said to use cron.But I'm new to this. Is ther any other way to do that?
Dibyendra
Using Cron
Moderator: General Moderators
- daven
- Forum Contributor
- Posts: 332
- Joined: Tue Dec 17, 2002 1:29 pm
- Location: Gaithersburg, MD
- Contact:
Cron is truly the way to go if you are using a linux/unix host. Generally you edit the crontab to schedule certain tasks (such as running a script to send emails). Check out http://www.oreillynet.com/linux/cmd for details on how to use cron/crontab.
Without cron, I cannot think of an efficient way to send out emails on a regular basis. If you only want to send emails after a user performs an action, you can code the email into your other php scripts.
Without cron, I cannot think of an efficient way to send out emails on a regular basis. If you only want to send emails after a user performs an action, you can code the email into your other php scripts.