From e986e8aba4d301c2be2b3a2607ee57e7de2fb494 Mon Sep 17 00:00:00 2001 From: Malcolm Tredinnick Date: Thu, 3 May 2007 17:52:38 +0000 Subject: [PATCH] Added "new in development version" markers to new email stuff. git-svn-id: http://code.djangoproject.com/svn/django/trunk@5147 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- docs/email.txt | 2 ++ docs/settings.txt | 2 ++ 2 files changed, 4 insertions(+) diff --git a/docs/email.txt b/docs/email.txt index 0196b506795..2793ee8ae38 100644 --- a/docs/email.txt +++ b/docs/email.txt @@ -189,6 +189,8 @@ from the request's POST data, sends that to admin@example.com and redirects to The EmailMessage and SMTPConnection classes =========================================== +**New in Django development version** + Django's ``send_mail()`` and ``send_mass_mail()`` functions are actually thin wrappers that make use of the ``EmailMessage`` and ``SMTPConnection`` classes in ``django.mail``. If you ever need to customize the way Django sends email, diff --git a/docs/settings.txt b/docs/settings.txt index 58d590f7c26..72c6e4ce54f 100644 --- a/docs/settings.txt +++ b/docs/settings.txt @@ -431,6 +431,8 @@ trailing space. EMAIL_USE_TLS ------------- +**New in Django development version** + Default: ``False`` Whether to use a TLS (secure) connection when talking to the SMTP server.