Re: automatic updates for a set of model objects via email

2009-04-27 Thread Timboy
Reading back through I might still not have explained simply enough. I have a VehicleSearch Model with a m2m to Vehicle and a FK to User. I want to be able to notify the user that has the VehicleSearch object when a vehicle inside of the m2m has been added or updated. I'm looking for the best wa

Re: automatic updates for a set of model objects via email

2009-04-23 Thread Timboy
Let me be more specific to my needs: Here is my example AutoSearch model: name = charfield uuid = uuid query = charfield autos = m2m updated = boolean emailed_on_update = boolean emailed_on_new = boolean Here are my needs: * updates to this search send the user an email * the user needs to kno

Re: automatic updates for a set of model objects via email

2009-04-23 Thread Alex Gaynor
On Fri, Apr 24, 2009 at 1:15 AM, Timboy wrote: > > I want my users to be able to be updated for changes to specific > models objects. > > Let's say a user does a search of vehicle listings and the search > returns 3 cars. I want them to be able to be alerted when any of those > three car listings

automatic updates for a set of model objects via email

2009-04-23 Thread Timboy
I want my users to be able to be updated for changes to specific models objects. Let's say a user does a search of vehicle listings and the search returns 3 cars. I want them to be able to be alerted when any of those three car listings get updated. What's the best way to accomplish this? TIA --