Re: scheduling in future

2012-01-10 Thread Mike Dewhirst

On 11/01/2012 4:09pm, Donald Casson wrote:

I would take a peek at celery and the eta function.  It allows you to
specify the task as specified in tasks.py with an eta to the
run_asynchronous method.  Hope this helps.


Looking it up as we speak

Thanks

Mike



Cheers
Don

On Jan 11, 2012 2:31 PM, "Mike Dewhirst" mailto:mi...@dewhirst.com.au>> wrote:

What is the best way to schedule future events in Django?

I have a table with future dates and user info. When date==today I
want Django to send an email to that user.

Ideas?

Thanks

Mike

--
You received this message because you are subscribed to the Google
Groups "Django users" group.
To post to this group, send email to django-users@googlegroups.com
.
To unsubscribe from this group, send email to
django-users+unsubscribe@__googlegroups.com
.
For more options, visit this group at
http://groups.google.com/__group/django-users?hl=en
.

--
You received this message because you are subscribed to the Google
Groups "Django users" group.
To post to this group, send email to django-users@googlegroups.com.
To unsubscribe from this group, send email to
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at
http://groups.google.com/group/django-users?hl=en.


--
You received this message because you are subscribed to the Google Groups "Django 
users" group.
To post to this group, send email to django-users@googlegroups.com.
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.



Re: scheduling in future

2012-01-10 Thread Donald Casson
I would take a peek at celery and the eta function.  It allows you to
specify the task as specified in tasks.py with an eta to the
run_asynchronous method.  Hope this helps.

Cheers
Don
On Jan 11, 2012 2:31 PM, "Mike Dewhirst"  wrote:

> What is the best way to schedule future events in Django?
>
> I have a table with future dates and user info. When date==today I want
> Django to send an email to that user.
>
> Ideas?
>
> Thanks
>
> Mike
>
> --
> You received this message because you are subscribed to the Google Groups
> "Django users" group.
> To post to this group, send email to django-users@googlegroups.com.
> To unsubscribe from this group, send email to django-users+unsubscribe@**
> googlegroups.com .
> For more options, visit this group at http://groups.google.com/**
> group/django-users?hl=en
> .
>
>

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com.
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.



Re: scheduling in future

2012-01-10 Thread Wen 温业逵Yekui
about sending email,you can utilize the libary function of django to do so

2012/1/11 Wen 温业逵Yekui 

> when you get the request of that user,you can get the "date" about the
> user from database ,then check if that date is today
>
>
> 2012/1/11 Mike Dewhirst 
>
>> What is the best way to schedule future events in Django?
>>
>> I have a table with future dates and user info. When date==today I want
>> Django to send an email to that user.
>>
>> Ideas?
>>
>> Thanks
>>
>> Mike
>>
>> --
>> You received this message because you are subscribed to the Google Groups
>> "Django users" group.
>> To post to this group, send email to django-users@googlegroups.com.
>> To unsubscribe from this group, send email to django-users+unsubscribe@**
>> googlegroups.com .
>> For more options, visit this group at http://groups.google.com/**
>> group/django-users?hl=en
>> .
>>
>>
>

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com.
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.



Re: scheduling in future

2012-01-10 Thread Wen 温业逵Yekui
when you get the request of that user,you can get the "date" about the user
from database ,then check if that date is today


2012/1/11 Mike Dewhirst 

> What is the best way to schedule future events in Django?
>
> I have a table with future dates and user info. When date==today I want
> Django to send an email to that user.
>
> Ideas?
>
> Thanks
>
> Mike
>
> --
> You received this message because you are subscribed to the Google Groups
> "Django users" group.
> To post to this group, send email to django-users@googlegroups.com.
> To unsubscribe from this group, send email to django-users+unsubscribe@**
> googlegroups.com .
> For more options, visit this group at http://groups.google.com/**
> group/django-users?hl=en
> .
>
>

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com.
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.



scheduling in future

2012-01-10 Thread Mike Dewhirst

What is the best way to schedule future events in Django?

I have a table with future dates and user info. When date==today I want 
Django to send an email to that user.


Ideas?

Thanks

Mike

--
You received this message because you are subscribed to the Google Groups "Django 
users" group.
To post to this group, send email to django-users@googlegroups.com.
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.