From 82df62b545cff6dbd901ab3ed429d2a323765625 Mon Sep 17 00:00:00 2001 From: Adrian Holovaty Date: Tue, 28 Mar 2006 16:32:24 +0000 Subject: [PATCH] Clarified docs/email.txt. Thanks, Poromenos git-svn-id: http://code.djangoproject.com/svn/django/trunk@2573 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- docs/email.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/email.txt b/docs/email.txt index 8159536d1e..ae55a51a14 100644 --- a/docs/email.txt +++ b/docs/email.txt @@ -78,7 +78,7 @@ send_mass_mail vs. send_mail The main difference between ``send_mass_mail()`` and ``send_mail()`` is that ``send_mail()`` opens a connection to the mail server each time it's executed, -while ``send_mass_mail()`` uses a single connection for each of its messages. +while ``send_mass_mail()`` uses a single connection for all of its messages. This makes ``send_mass_mail()`` slightly more efficient. The mail_admins function