Changeset 1785
- Timestamp:
- 12/27/05 16:57:45 (3 years ago)
- Files:
-
- django/trunk/docs/email.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
django/trunk/docs/email.txt
r1784 r1785 81 81 `EMAIL_SUBJECT_PREFIX setting`_, which is ``"[Django] "`` by default. 82 82 83 The "From:" header of the e-mail will be the value of the `SERVER_EMAIL setting`_. 84 83 85 .. _ADMINS setting: http://www.djangoproject.com/documentation/settings/#admins 84 86 .. _EMAIL_SUBJECT_PREFIX setting: http://www.djangoproject.com/documentation/settings/#email-subject-prefix 87 .. _SERVER_EMAIL setting: http://www.djangoproject.com/documentation/settings/#server-email 85 88 86 89 The mail_managers function … … 89 92 ``django.core.mail.mail_managers`` is just like ``mail_admins``, except it 90 93 sends an e-mail to the site managers, as defined in the `MANAGERS setting`_. 94 Here's the definition:: 95 96 mail_managers(subject, message, fail_silently=False) 91 97 92 98 .. _MANAGERS setting: http://www.djangoproject.com/documentation/settings/#managers
