[Fixed]-I am creating a social networking site using django, should I have create a email app

1👍

✅

You should create separate module. There is no reason to have same function implemented in multiple places, it makes your code hard to maintenance.
Each functionality should have own module (in this case app), so modifying email you will have to modify only one file/module, not all email functions in all modules

Leave a comment