In applications/forms.py L101-L103, there is an exception that is raised, without specifying the exception class. There is also a TODO in L102 with a pass. There is need to specify a proper exception class here and replace the TODO with the actions to do when sending email fails. Actions can be logging and informing the user of retries, instead of a server error.
In applications/forms.py L101-L103, there is an exception that is raised, without specifying the exception class. There is also a TODO in L102 with a
pass. There is need to specify a proper exception class here and replace theTODOwith the actions to do when sending email fails. Actions can be logging and informing the user of retries, instead of a server error.