Django

Code

Changeset 2573

Show
Ignore:
Timestamp:
03/28/06 10:32:24 (2 years ago)
Author:
adrian
Message:

Clarified docs/email.txt. Thanks, Poromenos

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • django/trunk/docs/email.txt

    r2548 r2573  
    7979The main difference between ``send_mass_mail()`` and ``send_mail()`` is that 
    8080``send_mail()`` opens a connection to the mail server each time it's executed, 
    81 while ``send_mass_mail()`` uses a single connection for each of its messages. 
     81while ``send_mass_mail()`` uses a single connection for all of its messages. 
    8282This makes ``send_mass_mail()`` slightly more efficient. 
    8383