Ticket #5148: default_from_email_doc.diff
File default_from_email_doc.diff, 839 bytes (added by , 17 years ago) |
---|
-
Users/mcroydon/code/python/sprint/django-trunk/docs/email.txt
225 225 226 226 * ``from_email``: The sender's address. Both ``fred@example.com`` and 227 227 ``Fred <fred@example.com>`` forms are legal. If omitted, the 228 ` `DEFAULT_FROM_EMAIL`` settingis used.228 `DEFAULT_FROM_EMAIL setting`_ is used. 229 229 230 230 * ``to``: A list or tuple of recipient addresses. 231 231 … … 297 297 298 298 message.attach_file('/images/weather_map.png') 299 299 300 .. _DEFAULT_FROM_EMAIL setting: ../settings/#default-from-email 301 300 302 Sending alternative content types 301 303 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 302 304