diff options
| author | Tom Scholl <tom@dustyneuron.com> | 2013-11-08 02:24:55 +0000 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2013-11-08 18:39:53 -0500 |
| commit | c9917f4c83982bd14553f2a953d7ea9e9dc150fd (patch) | |
| tree | 69956378bd4c03cd39dd649595a4cd9d3d800af1 | |
| parent | d4b1724b36ea03c8ca72f8addff92dc9edb5e260 (diff) | |
[1.6.x] 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'.
Backport of cab72a439b from master
| -rw-r--r-- | docs/topics/email.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/topics/email.txt b/docs/topics/email.txt index 9aa9a26ec0..0e15830c92 100644 --- a/docs/topics/email.txt +++ b/docs/topics/email.txt @@ -258,7 +258,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. |
