Motaz Abo Elnasr
Motaz Abo Elnasr

Reputation: 55

Django : How to send notification to admin on a specific user activity?

I'm building a website that needs sending a notification to the admin when a request for help happens, It doesn't need to be literally a notification, it may b email in the admin panel or so, Thanks ^^

Upvotes: 4

Views: 2113

Answers (1)

Ohad the Lad
Ohad the Lad

Reputation: 1929

Use signals. django signals

When the request happens - invoke a signal from server and save new data that you wish.

Another easy and great example: simpleisbetterthancomplex

Maybe create history module to store the help request event.

Upvotes: 2

Related Questions