I am making a shopping cart using mezzanine and cartridge.
In my order model there is a field called status which has choices of unprocessed and processed. After an orde
You need to add a listener on the post_save signal for the model. Your listener (which is a standard Python method) will check what field has changed and then dispatch the email to the user.