Hi,
I am trying to send a mail to the end user after the user successfully password reset to the webapp, and I have completed the module for it, and it's working fine in the local server but when I upload the application into the server and try to run that functionality. It shows

This is the error message which I am facing.
I am using built in auth.views for rest password and all.
I am using Cpanel as a hosting server.
I had a talk with godaddy and they told me to set the smtp host to the local server and smtp port to 25, i did that but still it's not working. Before this I was using
smtp.gmail.com as SMTP host and 568 as port.
EMAIL_HOST = 'localhost'
EMAIL_PORT = 25
EMAIL_HOST_USER = '*********************'
EMAIL_HOST_PASSWORD = '****************'
EMAIL_USE_TLS =False
URL:
path('password-reset-form/',auth_views.PasswordResetView.as_view(),name='password_reset'),