Topic awaiting preservation: Tools that sends out email after finding items that matches the criteri |
|
---|---|
Author | Thread |
Bipolar (III) Inmate From: Australia |
posted 08-07-2003 03:53
Any one knows of any tools that could be used in a Course registration process. i.e. once a user registered himself into database, a confirmation email will be sent out. and in 1 months (or other set date) time send out a reminder. |
Maniac (V) Inmate From: soon to be "the land down under" |
posted 08-07-2003 05:47
How you go about it is pretty easy. A few php scripts tying into a SQL database for your user registration and other database information should do the trick, and a cron job (assuming *nix) set to run 30 days from the registration date. |
Maniac (V) Mad Scientist From: 100101010011 <-- right about here |
posted 08-07-2003 06:22
Just a note on a process, for something like this as opposed to a cronjob set up for 30 days after posting, I'd a run a once a day job that queried the db to find out who had registered 30 days ago and send confirmation emails one at a time. |
Maniac (V) Mad Scientist with Finglongers From: Cell 53, East Wing |
posted 08-07-2003 14:08
Pimms One: You didn't speciy the language you are using - in PHP you'd just use mail(). Kuckus has done a great tutorial on this function and the 'you have been registered' email is really only just an extension of this: |
Bipolar (III) Inmate From: Australia |
posted 08-11-2003 07:30
Sorry. I am thinking of using Java and mySQL. What option do I have? Thank you. |