Simple django backend to send email through Elasticemail as your EmailBackend.
-
Install the package via pip
pip install -e git+https://github.com/muepsilon/elasticemail-django#egg=elasticemail-django
-
Add
elasticemailbackend
toINSTALLED_APPS
-
In
settings.py
add:ELASTICEMAIL_API_KEY = "aaaaaaaa-bbbb-cccc-dddd-eeeeeeeeeeee"
EMAIL_BACKEND = "elasticemailbackend.backend.ElasticEmailBackend"
DEFAULT_FROM_EMAIL = "test@example.com"