Clarified docs/email.txt. Thanks, Poromenos

git-svn-id: http://code.djangoproject.com/svn/django/trunk@2573 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
Adrian Holovaty 2006-03-28 16:32:24 +00:00
parent 0907a2781b
commit 82df62b545
1 changed files with 1 additions and 1 deletions

View File

@ -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