I've built a site that requires membership for some portions. It's a club website so to be a member on the website, you have to be a member in real life. The plan is to have somebody from the Club check for new members (I'll probably have the system send them an email when a user signs up) and then the admin checks the active checkbox under the user's record in the Django admin and saves the user.
The problem I'm trying to overcome is we need new, valid users to be notified as to when they can start using their account. Obviously manually sending an email is cumbersome.
Is there a way to hook into the save() logic, check if the record's active state has changed, and if it has been activated, send that user an email telling them they can now log in?
I'm on top of all the email logic, I just need to know where to put it.
I realise there are other ways of testing (check for last_login==None on active==True accounts on a cron-style job) but I'd like notifications to be near-enough instant.