Kaydet (Commit) a981f5b9 authored tarafından Timo Graham's avatar Timo Graham

Fixed #15163 - typo in email docs; thanks metal for the report.

git-svn-id: http://code.djangoproject.com/svn/django/trunk@15311 bcc190cf-cafb-0310-a4f2-bffc1f526a37
üst f81d4ba5
......@@ -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)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment