File: help.rst

package info (click to toggle)
django-anymail 13.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 2,480 kB
  • sloc: python: 27,832; makefile: 132; javascript: 33; sh: 9
file content (122 lines) | stat: -rw-r--r-- 4,814 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
.. _help:

Help
====

.. _contact:
.. _support:

Getting support
---------------

Anymail is supported and maintained by the people who use it---like you!
Our contributors volunteer their time (and most are not employees of any ESP).

Here's how to contact the Anymail community:

**"How do I...?"**

  .. raw:: html

        <div class="anymail-inline-search-form" role="search">
          <form class="wy-form" action="../search/" method="get">
            <input type="search" name="q" placeholder="Search docs">
            <input type="hidden" name="check_keywords" value="yes">
            <input type="hidden" name="area" value="default">
          </form>
        </div>

  If searching the docs doesn't find an answer,
  ask a question in the GitHub `Anymail discussions`_ forum.

**"I'm getting an error or unexpected behavior..."**

  First, try the :ref:`troubleshooting tips <troubleshooting>` in the next section.
  If those don't help, ask a question in the GitHub `Anymail discussions`_ forum.
  Be sure to include:

  * which ESP you're using (Mailgun, SendGrid, etc.)
  * what versions of Anymail, Django, and Python you're running
  * the relevant portions of your code and settings
  * the text of any error messages
  * any exception stack traces
  * the results of your :ref:`troubleshooting <troubleshooting>` (e.g., any relevant
    info from your ESP's activity log)
  * if it's something that was working before, when it last worked,
    and what (if anything) changed since then

  ... plus anything else you think might help someone understand what you're seeing.

**"I found a bug..."**

  Open a `GitHub issue`_. Be sure to include the versions and other information listed above.
  (And if you know what the problem is, we always welcome
  :ref:`contributions <contributing>` with a fix!)

**"I found a security issue!"**

  Contact the Anymail maintainers by emailing *security\<at>anymail\<dot>dev.*
  (Please don't open a GitHub issue or post publicly about potential security problems.)

**"Could Anymail support this ESP or feature...?"**

  If the idea has already been suggested in the GitHub `Anymail discussions`_ forum,
  express your support using GitHub's `thumbs up reaction`_. If not, add the idea
  as a new discussion topic. And either way, if you'd be able to help with development
  or testing, please add a comment saying so.


.. _Anymail discussions: https://github.com/anymail/django-anymail/discussions
.. _GitHub issue: https://github.com/anymail/django-anymail/issues
.. _thumbs up reaction:
    https://blog.github.com/2016-03-10-add-reactions-to-pull-requests-issues-and-comments/


.. _troubleshooting:

Troubleshooting
---------------

If Anymail's not behaving like you expect, these troubleshooting tips can
often help you pinpoint the problem...

**Check the error message**

  Look for an Anymail error message in your console (running Django in dev mode)
  or in your server error logs. If you see something like "invalid API key"
  or "invalid email address", that's often a big first step toward being able
  to solve the problem.

**Check your ESPs API logs**

  Most ESPs offer some sort of API activity log in their dashboards.
  Check their logs to see if the
  data you thought you were sending actually made it to your ESP, and
  if they recorded any errors there.

**Double-check common issues**

  * Did you add any required settings for your ESP to the `ANYMAIL` dict in your
    settings.py? (E.g., ``"SENDGRID_API_KEY"`` for SendGrid.) Check the instructions
    for the ESP you're using under :ref:`supported-esps`.
  * Did you add ``'anymail'`` to the list of :setting:`INSTALLED_APPS` in settings.py?
  * Are you using a valid *from* address? Django's default is "webmaster@localhost",
    which most ESPs reject. Either specify the ``from_email`` explicitly on every message
    you send, or add :setting:`DEFAULT_FROM_EMAIL` to your settings.py.

**Try it without Anymail**

  If you think Anymail might be causing the problem, try switching your
  :setting:`EMAIL_BACKEND` setting to
  Django's :ref:`File backend <django:topic-email-file-backend>` and then running your
  email-sending code again. If that causes errors, you'll know the issue is somewhere
  other than Anymail. And you can look through the :setting:`EMAIL_FILE_PATH`
  file contents afterward to see if you're generating the email you want.

**Examine the raw API communication**

  Sometimes you just want to see exactly what Anymail is telling your ESP to do
  and how your ESP is responding. In a dev environment, enable the Anymail setting
  :setting:`DEBUG_API_REQUESTS <ANYMAIL_DEBUG_API_REQUESTS>`
  to show the raw HTTP requests and responses from (most) ESP APIs. (This is not
  recommended in production, as it can leak sensitive data into your logs.)