summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorTimo Graham <timograham@gmail.com>2011-01-26 00:37:55 +0000
committerTimo Graham <timograham@gmail.com>2011-01-26 00:37:55 +0000
commit1418c215f4b6d30e58626bcb028201b016494cb0 (patch)
treec68b5048d777a4aa28cfd3b9eb43d64d44450943 /docs
parent7d0d10ce204118f32ef50d778fa975fb18314ece (diff)
[1.2.X] Fixed #15163 - typo in email docs; thanks metal for the report.
Backport of r15311 from trunk. git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.2.X@15312 bcc190cf-cafb-0310-a4f2-bffc1f526a37
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 a01cc332bd..e522750834 100644
--- a/docs/topics/email.txt
+++ b/docs/topics/email.txt
@@ -92,7 +92,7 @@ For example, the following code would send two different messages to
two different sets of recipients; however, only one connection to the
mail server would be opened::
- message1 = ('Subject here', 'Here is the message', 'from@example.com, ['first@example.com', 'other@example.com'])
+ message1 = ('Subject here', 'Here is the message', 'from@example.com', ['first@example.com', 'other@example.com'])
message2 = ('Another Subject', 'Here is another message', 'from@example.com', ['second@test.com'])
send_mass_mail((message1, message2), fail_silently=False)