mirror of
https://github.com/pacnpal/django-anymail.git
synced 2025-12-20 11:51:05 -05:00
11 lines
354 B
Python
11 lines
354 B
Python
from django.conf import settings
|
|
|
|
from djrill.exceptions import MandrillAPIError, NotSupportedByMandrillError
|
|
from ._version import __version__, VERSION
|
|
|
|
|
|
# This backend was developed against this API endpoint.
|
|
# You can override in settings.py, if desired.
|
|
MANDRILL_API_URL = getattr(settings, "MANDRILL_API_URL",
|
|
"https://mandrillapp.com/api/1.0")
|