Thank you for the response Jeremy!  Your solution seems the most
graceful and efficient.  However it looks like I may be doing something
wrong... :-(

Here is the modification...

...
class Environment(models.Model):
  short_name = models.CharField("Short Name", maxlength=8, blank=False,
unique=True)
  full_name = models.CharField("Fully Qualified Domain Name",
maxlength=64, blank=False, unique=True)
  status = models.CharField(maxlength=1, choices=STATUS_CHOICES,
radio_admin=True, blank=False)
  lastupdated = models.DateTimeField(_('action time'), auto_now=True)
  oktoadd = models.BooleanField("Ok to add new clients", default=False)
  def __unicode__(self):
    return self.short_name
  def save():
     super(Environment, self).save()
     send_mail('Subject here', 'Here is the message.',
'[EMAIL PROTECTED]', ['[EMAIL PROTECTED]'])
  class Admin:
...

And I'm getting the following error:

Traceback (most recent call last):
File
"/usr/local/lib/python2.5/site-packages/django/core/handlers/base.py" in
get_response
  77. response = callback(request, *callback_args, **callback_kwargs)
File
"/usr/local/lib/python2.5/site-packages/django/contrib/admin/views/decorators.py"
in _checklogin
  55. return view_func(request, *args, **kwargs)
File
"/usr/local/lib/python2.5/site-packages/django/views/decorators/cache.py"
in _wrapped_view_func
  39. response = view_func(request, *args, **kwargs)
File
"/usr/local/lib/python2.5/site-packages/django/contrib/admin/views/main.py"
in change_stage
  336. new_object = manipulator.save(new_data)
File
"/usr/local/lib/python2.5/site-packages/django/db/models/manipulators.py"
in save
  110. new_object.save()

  TypeError at /admin/envwork/environment/12/
  save() takes no arguments (1 given)

Any thoughts?

Thank you again,
jack


Jeremy Dunck wrote:
> 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
> 
> > 
> 

-- 
RRRRRRRR RRRRRRRR                   Jack E. Wilkinson
RRRRRRRR    RRRRRRRR                Managed Backup Admin III
RRRRRRRR RRRRRRRR                   Software Developer
RRRRRRRR RRRRRRRR                   [EMAIL PROTECTED]
Rackspace Managed Hosting(tm)       +1-210-312-4460


Confidentiality Notice: This e-mail message (including any attached or
embedded documents) is intended for the exclusive and confidential use of the
individual or entity to which this message is addressed, and unless otherwise
expressly indicated, is confidential and privileged information of Rackspace
Managed Hosting. Any dissemination, distribution or copying of the enclosed
material is prohibited. If you receive this transmission in error, please
notify us immediately by e-mail at [EMAIL PROTECTED], and delete the
original message. Your cooperation is appreciated.


--~--~---------~--~----~------------~-------~--~----~
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