~ubuntu-branches/ubuntu/saucy/python-django/saucy-updates

« back to all changes in this revision

Viewing changes to docs/topics/email.txt

  • Committer: Package Import Robot
  • Author(s): Luke Faraone, Jakub Wilk, Luke Faraone
  • Date: 2013-05-09 15:10:47 UTC
  • mfrom: (1.1.21) (4.4.27 sid)
  • Revision ID: package-import@ubuntu.com-20130509151047-aqv8d71oj9wvcv8c
Tags: 1.5.1-2
[ Jakub Wilk ]
* Use canonical URIs for Vcs-* fields.

[ Luke Faraone ]
* Upload to unstable.

Show diffs side-by-side

added added

removed removed

Lines of Context:
119
119
 
120
120
This method exists for convenience and readability.
121
121
 
122
 
.. versionchanged:: 1.3
123
 
 
124
122
If ``html_message`` is provided, the resulting email will be a
125
123
:mimetype:`multipart/alternative` email with ``message`` as the
126
124
:mimetype:`text/plain` content type and ``html_message`` as the
236
234
All parameters are optional and can be set at any time prior to calling the
237
235
``send()`` method.
238
236
 
239
 
.. versionchanged:: 1.3
240
 
   The ``cc`` argument was added.
241
 
 
242
237
* ``subject``: The subject line of the email.
243
238
 
244
239
* ``body``: The body text. This should be a plain text message.
365
360
Email backends
366
361
==============
367
362
 
368
 
.. versionadded:: 1.2
369
 
 
370
363
The actual sending of an email is handled by the email backend.
371
364
 
372
365
The email backend class has the following methods: