Ticket #5148: default_from_email_doc.diff

File default_from_email_doc.diff, 839 bytes (added by mcroydon, 17 years ago)

Documentation patch to link mention of DEFAULT_FROM_EMAIL to settings file documentation

  • Users/mcroydon/code/python/sprint/django-trunk/docs/email.txt

     
    225225
    226226    * ``from_email``: The sender's address. Both ``fred@example.com`` and
    227227      ``Fred <fred@example.com>`` forms are legal. If omitted, the
    228       ``DEFAULT_FROM_EMAIL`` setting is used.
     228      `DEFAULT_FROM_EMAIL setting`_ is used.
    229229
    230230    * ``to``: A list or tuple of recipient addresses.
    231231
     
    297297
    298298        message.attach_file('/images/weather_map.png')
    299299
     300.. _DEFAULT_FROM_EMAIL setting: ../settings/#default-from-email
     301
    300302Sending alternative content types
    301303~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    302304
Back to Top