I am setting up a Django-based hobby site on a VPS, and I am confused with Django's email system configuration. My server is successfully sending me technical emails (e.g. from fail2ban) using sendmail. However all Django-related googling mentions postfix, e.g. in this other answer.
I wonder:
- If I can use sendmail rather than postfix;
- How I can configure Django to use my server's mailing functionality.
Any help is much appreciated.
FWIW, I am on Ubuntu 16.04 and Django 1.10.
It seems Django does not offer a backend for using sendmail locally by default.
I can see two options:
sendmail
command. A quick search turns up https://github.com/perenecabuto/django-sendmail-backend which seems like it should work.