i have deployed django project finally on server and now it is working, but once i go to /admin/
, i am getting 500 page but not notification.
this is what i have in settings_prod.py
from settings import *
DEBUG = TEMPLATE_DEBUG = False
SERVER_EMAIL='my_mail@mail.com'
DEFAULT_FROM_EMAIL='my_mail@mail.com'
ADMINS = (
(u'me', 'my_mail@mail.com'),
)
MANAGERS = ADMINS
what am i doing wrong?
Do i need any SMTP setups for this? i thought, this is server mailing, so server has already everything setup to send error mails.