Changeset 5115
- Timestamp:
- 04/27/07 23:08:31 (1 year ago)
- Files:
-
- django/trunk/docs/email.txt (modified) (1 diff)
- django/trunk/docs/settings.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
django/trunk/docs/email.txt
r5111 r5115 22 22 23 23 Mail will be sent using the SMTP host and port specified in the `EMAIL_HOST`_ 24 and `EMAIL_PORT`_ settings. The `EMAIL_HOST_USER`_ and `EMAIL_HOST_PASSWORD`_ 25 settings, if set, will be used to authenticate to the 26 SMTP server. 24 and `EMAIL_PORT`_ settings. The `EMAIL_HOST_USER`_ and `EMAIL_HOST_PASSWORD`_ 25 settings, if set, will be used to authenticate to the SMTP server. 27 26 28 27 .. note:: django/trunk/docs/settings.txt
r5111 r5115 397 397 398 398 Password to use for the SMTP server defined in ``EMAIL_HOST``. This setting is 399 used in conjunction with EMAIL_HOST_USER when authenticating to the SMTP server. 400 If either of these settings is empty, Django won't attempt authenticaion. 399 used in conjunction with ``EMAIL_HOST_USER`` when authenticating to the SMTP 400 server. If either of these settings is empty, Django won't attempt 401 authenticaion. 401 402 402 403 See also ``EMAIL_HOST_USER``.
