Django

Code

Ticket #5148: default_from_email_doc.diff

File default_from_email_doc.diff, 0.8 kB (added by mcroydon, 1 year ago)

Documentation patch to link mention of DEFAULT_FROM_EMAIL to settings file documentation

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

    old new  
    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