diff options
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/topics/email.txt | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/docs/topics/email.txt b/docs/topics/email.txt index 31092b0aaa..427bf59f15 100644 --- a/docs/topics/email.txt +++ b/docs/topics/email.txt @@ -235,6 +235,9 @@ following parameters (in the given order, if positional arguments are used). All parameters are optional and can be set at any time prior to calling the ``send()`` method. +.. versionchanged:: 1.3 + The ``cc`` argument was added. + * ``subject``: The subject line of the e-mail. * ``body``: The body text. This should be a plain text message. @@ -261,6 +264,9 @@ All parameters are optional and can be set at any time prior to calling the caller to ensure header names and values are in the correct format for an e-mail message. + * ``cc``: A list or tuple of recipient addresses used in the "Cc" header + when sending the e-mail. + For example:: email = EmailMessage('Hello', 'Body goes here', 'from@example.com', |
