Simple EmailBackend for Django to interact with Microsoft
Exchange Servers.
Standard configuration - there is only one optional new setting: EMAIL_DOMAIN.
If EMAIL_DOMAIN is set, the username for the Exchange server will be prefixed by {EMAIL_DOMAIN}\\.
EMAIL_HOST = 'mail.example.com'
EMAIL_PORT = 25
EMAIL_HOST_USER = 'user-name'
EMAIL_HOST_PASSWORD = 'password'
EMAIL_DOMAIN = 'domain.example.com' # This is the only new setting, add this if necessary.