Commit 1418c215 authored by Timo Graham's avatar Timo Graham
Browse files

[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
parent 7d0d10ce
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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)