Changeset 6790 for django/trunk/docs/email.txt
- Timestamp:
- 12/01/07 11:20:19 (1 year ago)
- Files:
-
- django/trunk/docs/email.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
django/trunk/docs/email.txt
r6629 r6790 254 254 The class has the following methods: 255 255 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. 259 261 260 262 * ``message()`` constructs a ``django.core.mail.SafeMIMEText`` object (a
