The main functionality of it would be:

  1. check a condition every day
  2. if the condition is true, then send email

Now, I know how to conditionlly send email, but I don`t know how to do make it repeat every day. I have some ideas but not sure about them at all (to add another process? or others?). I appreciate your suggestions and ideas...thx

link|improve this question
You've got a good answer below. You should mark it as answered. – Chris Pratt May 12 '11 at 15:28
feedback

1 Answer

up vote 4 down vote accepted

You could create a custom management command and use a cron job to have it run once a day.

edit:

I have used this before, http://code.google.com/p/django-command-extensions/wiki/JobsScheduling. It is pretty handy if you have multiple tasks to be run on fixed schedules. Instead of having to add a line in crontab for each task you just add new files to the jobs directory.

link|improve this answer
1  
You can find some info for setting up your cron job (assuming you're using Linux) here: unixgeeks.org/security/newbie/unix/cron-1.html – Alex Jillard May 12 '11 at 2:34
just curious. how is python cron? I haven't used it myself but planning use it for one of my projects. Awaiting response from experts. Thanks – Konstant May 12 '11 at 3:04
I personnaly used the django-extensions jobs and I DON'T recommend it. I ended up replacing them with management command since I saw no advantage of using them. – Julien Grenier May 12 '11 at 14:31
"You must either run a job by hand, with which you can specify the exact time on which the command is ran, or put something like the following lines in your crontab file" i think i`m not interested in "by hand", but to make a crontab file is a feasible idea, or could i program a app for that like a bussiness management? – gareth May 20 '11 at 9:46
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.