From cab72a439b4d97a5659437373d06fc613e06e0bc Mon Sep 17 00:00:00 2001 From: Tom Scholl Date: Fri, 8 Nov 2013 02:24:55 +0000 Subject: [PATCH] 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'. --- docs/topics/email.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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.