I have a problem with the settings file I try to configure the sending of mail but it not works
I wrote :
EMAIL_HOST= \'mailhost.onera\'
EMAIL_HOST_USER
I preferebly use mandrilapp.com, it is of almost free.Just signup and get API Key in settings.In order to integrate to django, use djrill
.Simple steps
pip install djrill
In INSTALLED_APPS
INSTALLED_APPS = (
...
"djrill"
)
In settings.py
MANDRILL_API_KEY = "****frtyy*******"
EMAIL_BACKEND = "djrill.mail.backends.djrill.DjrillBackend"
Then use django.core.email
methods(send_mail, etc...).No formalities..Enjoy.. :)