瀏覽代碼

Fixed #13471 -- Added example of send_mass_mail usage. Thanks to gtaylor for the report and patch.

git-svn-id: http://code.djangoproject.com/svn/django/trunk@13127 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Russell Keith-Magee 15 年之前
父節點
當前提交
0e6ff67ba2
共有 1 個文件被更改,包括 8 次插入0 次删除
  1. 8 0
      docs/topics/email.txt

+ 8 - 0
docs/topics/email.txt

@@ -91,6 +91,14 @@ As in :meth:`~django.core.mail.send_mail()`, recipients in the same
 ``recipient_list`` will all see the other addresses in the e-mail messages'
 "To:" field.
 
+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'])
+    message2 = ('Another Subject', 'Here is another message', 'from@example.com', ['second@test.com'])
+    send_mass_mail((message1, message2), fail_silently=False)
+
 send_mass_mail() vs. send_mail()
 --------------------------------