mirror of
https://github.com/pacnpal/django-anymail.git
synced 2025-12-20 03:41:05 -05:00
Docs: clarify INSTALLED_APPS
* Trailing comma after "anymail" (see #40) * Note order doesn't matter * Change tuple to list (match examples to Django 1.9+ project template) [ci skip]
This commit is contained in:
@@ -94,10 +94,11 @@ or SparkPost or any other supported ESP where you see "mailgun":
|
||||
|
||||
.. code-block:: python
|
||||
|
||||
INSTALLED_APPS = (
|
||||
...
|
||||
"anymail"
|
||||
)
|
||||
INSTALLED_APPS = [
|
||||
# ...
|
||||
"anymail",
|
||||
# ...
|
||||
]
|
||||
|
||||
ANYMAIL = {
|
||||
# (exact settings here depend on your ESP...)
|
||||
|
||||
Reference in New Issue
Block a user