Ticket #4163: 4163.diff
File 4163.diff, 1.3 KB (added by , 18 years ago) |
---|
-
docs/email.txt
27 27 28 28 .. _DEFAULT_CHARSET setting: ../settings/#DEFAULT_CHARSET 29 29 30 .. note:: 31 32 Mail will be sent via the SMTP host and port specified in the `EMAIL_HOST`_ 33 and `EMAIL_PORT`_ settings. Additionally the `EMAIL_HOST_USER`_ 34 and `EMAIL_HOST_PASSWORD`_ settings, if set, will be used to authenticate 35 to the SMTP server. 36 37 .. _EMAIL_HOST: ../settings/#EMAIL_HOST 38 39 .. _EMAIL_PORT: ../settings/#EMAIL_PORT 40 41 .. _EMAIL_HOST_USER: ../settings/#EMAIL_HOST_USER 42 43 .. _EMAIL_HOST_PASSWORD: ../settings/#EMAIL_HOST_PASSWORD 44 45 30 46 send_mail() 31 47 =========== 32 48 -
docs/settings.txt
395 395 396 396 Default: ``''`` (Empty string) 397 397 398 Username to use for the SMTP server defined in ``EMAIL_HOST``. If empty, 399 Django won't attempt authentication. 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. 400 401 401 402 See also ``EMAIL_HOST_USER``. 402 403