[Answer]-Sending email after POST request with Django and Tastypie

1👍

Use post_save in Django Signals. https://docs.djangoproject.com/en/dev/topics/signals/

You can check the created parameter to know if you need to send an email.

Leave a comment