diff --git a/docs/email.txt b/docs/email.txt index 0196b50679..2793ee8ae3 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 58d590f7c2..72c6e4ce54 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.