Django

Code

Changeset 1785

Show
Ignore:
Timestamp:
12/27/05 16:57:45 (3 years ago)
Author:
adrian
Message:

Added small bits to docs/email.txt

Files:

Legend:

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

    r1784 r1785  
    8181`EMAIL_SUBJECT_PREFIX setting`_, which is ``"[Django] "`` by default. 
    8282 
     83The "From:" header of the e-mail will be the value of the `SERVER_EMAIL setting`_. 
     84 
    8385.. _ADMINS setting: http://www.djangoproject.com/documentation/settings/#admins 
    8486.. _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 
    8588 
    8689The mail_managers function 
     
    8992``django.core.mail.mail_managers`` is just like ``mail_admins``, except it 
    9093sends an e-mail to the site managers, as defined in the `MANAGERS setting`_. 
     94Here's the definition:: 
     95 
     96    mail_managers(subject, message, fail_silently=False) 
    9197 
    9298.. _MANAGERS setting: http://www.djangoproject.com/documentation/settings/#managers