summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorTom Scholl <tom@dustyneuron.com>2013-11-08 02:24:55 +0000
committerTim Graham <timograham@gmail.com>2013-11-08 18:38:45 -0500
commitcab72a439b4d97a5659437373d06fc613e06e0bc (patch)
tree05fb4d8f2f4af3576cb01426bec0cdda15d2e16a /docs
parent413307fe355d90a089411e4b08cf6aa44db7ce0f (diff)
Fixed docs for EmailMessage extra_headers attribute
The EmailMessage documentation describes the initialization parameters and states they 'can be set at any time prior to calling the send() method.'. However, the 'headers' parameter's corresponding attribute is called 'extra_headers'.
Diffstat (limited to 'docs')
-rw-r--r--docs/topics/email.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/topics/email.txt b/docs/topics/email.txt
index ea3939a836..d60a497fdf 100644
--- a/docs/topics/email.txt
+++ b/docs/topics/email.txt
@@ -267,7 +267,7 @@ All parameters are optional and can be set at any time prior to calling the
* ``headers``: A dictionary of extra headers to put on the message. The
keys are the header name, values are the header values. It's up to the
caller to ensure header names and values are in the correct format for
- an email message.
+ an email message. The corresponding attribute is ``extra_headers``.
* ``cc``: A list or tuple of recipient addresses used in the "Cc" header
when sending the email.