From fc793fc303a3d516ab51bb21aa317031caabe7b4 Mon Sep 17 00:00:00 2001 From: Mike Edmunds Date: Wed, 16 Jul 2025 15:01:49 -0700 Subject: Fixed #36163 -- Deprecated most positional arguments in django.core.mail. In public mail APIs, changed less frequently used parameters from keyword-or-positional to keyword-only, emitting a warning during the required deprecation period. --- docs/internals/deprecation.txt | 3 +++ 1 file changed, 3 insertions(+) (limited to 'docs/internals') diff --git a/docs/internals/deprecation.txt b/docs/internals/deprecation.txt index fb37d43849..98b8eade75 100644 --- a/docs/internals/deprecation.txt +++ b/docs/internals/deprecation.txt @@ -38,6 +38,9 @@ details on these changes. argument of ``django.core.paginator.Paginator`` and ``django.core.paginator.AsyncPaginator`` will no longer be allowed. +* The :mod:`django.core.mail` APIs will no longer accept certain parameters as + positional arguments. These must be passed as keyword arguments instead. + .. _deprecation-removed-in-6.1: 6.1 -- cgit v1.3