On 9/2/07, Jack E. Wilkinson <[EMAIL PROTECTED]> wrote:
...
> I've got a very simple model, two databases and I'm using the admin
> interface.  What I need is when one of the databases gets a change made
> to it, for an email to be sent out to a specific group (the group never
> changes, however, the subject and message content should change).
....
> Here is the model I have written.  When the Environment class changes is
> when I need to send out the email.


If you want to send mail when a *specific* model changes, you don't
need signals.

Note that signals are both single-process and synchronous, so that
implementing using a built-in signal like post_save would be roughly
the same as just overriding the model's save method.

In your model class, just override the save method, and make sure to
call the base save.

from django.core.mail import send_mail
....
class Environment(models.Model):
...
  def save():
     super(Environment, self).save()
     send_mail('Subject here', 'Here is the message.', '[EMAIL PROTECTED]',
        ['[EMAIL PROTECTED]','[EMAIL PROTECTED]'])
....

More:
http://www.djangoproject.com/documentation/email/#quick-example

--~--~---------~--~----~------------~-------~--~----~
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 [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to