[Answer]-Django admin actions vs save in model class

1👍

Django’s documentation specifies that calling update() on a queryset will not call save or invoke any pre-/post-save hooks. I suggest you call the function explicitly when the email needs to get sent.

Alternatively, you can call save() in the admin function, but then you lose the benefits of the update() method.

👤DavidM

Leave a comment