I have a model that contains a boolean field representing the item's approval or not. I'd like to send an email when the box is checked.
I understand how to override the save method and send the email if it's true but this will send an email every time it's saved.
As I only want to send the email once, is there a way to check a boolean is true only for the first time?
Thanks