Django

Code

Changeset 6790

Show
Ignore:
Timestamp:
12/01/07 11:20:19 (9 months ago)
Author:
ubernostrum
Message:

Fixed #5870: documented the "fail_silently" argument to EmailMessage?.send().

Files:

Legend:

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

    r6629 r6790  
    254254The class has the following methods: 
    255255 
    256     * ``send()`` sends the message, using either the connection that is 
    257       specified in the ``connection`` attribute, or creating a new connection 
    258       if none already exists. 
     256    * ``send(fail_silently=False)`` sends the message, using either 
     257      the connection that is specified in the ``connection`` 
     258      attribute, or creating a new connection if none already 
     259      exists. If the keyword argument ``fail_silently`` is ``True``, 
     260      exceptions raised while sending the message will be quashed. 
    259261 
    260262    * ``message()`` constructs a ``django.core.mail.SafeMIMEText`` object (a