Forum Moderators: coopster

Message Too Old, No Replies

E-mail at a certain time

         

RussellC

2:55 pm on Jan 22, 2003 (gmt 0)

10+ Year Member



I am creating a client tracking system and I would love it if users could set up an action item and set what time they want to be reminded about it, then have an email sent to their box to be reminded. I don't know if this is possible in PHP, but if anyone knows how, let me know. Thanks.

hakre

2:59 pm on Jan 22, 2003 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member



you can create something like that with a crontab job calling a php script which checks a db for scheduled actions and performs these then.

but you need to have crontab installed. ask your host.

RussellC

3:30 pm on Jan 22, 2003 (gmt 0)

10+ Year Member



Thanks for the help. I'll try it out. I host my own server for the Intranet site I am dealing with so I will play with it. Thanks.

andreasfriedrich

3:55 pm on Jan 22, 2003 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member



Both
cron
and
at
can be used to perform some action at a specified time. Use cron when you want to perform some task regularly, such as calling a php script. Use at when you want to perform a certain task once at a certain time.

Andreas

RussellC

3:58 pm on Jan 22, 2003 (gmt 0)

10+ Year Member



Thanks andreas