Re: send_mass_mail() on save

2006-12-13 Thread Adam Fast
You'll want to look into the save and delete hooks functionality here: http://www.djangoproject.com/documentation/models/save_delete_hooks/ What it would look like is add to Publications: def save(self): super(Publications, self).save() # Call the "real" save() method customer_list

send_mass_mail() on save

2006-12-12 Thread [EMAIL PROTECTED]
I have two models, Subscriber, which has a front-end userface where people can sign up for a newsletter and Publication, which has an admin interface for writing the newsletters. What I want to do is to have the ability to fetch the rows in Subscriber and use these as the datatuple for send_mass_