TYPO3 v15 dev-main snapshot ()

This commit is contained in:
2026-08-10 22:31:09 +02:00
commit af8cc155b5
6818 changed files with 642608 additions and 0 deletions
@@ -0,0 +1,37 @@
.. include:: /Includes.rst.txt
.. _breaking-61783:
=================================================
Breaking: #61783 - Removed deprecated mailing API
=================================================
See :issue:`61783`
Description
===========
The deprecated methods to send email are removed.
This includes the :code:`MailUtility::mail()` method, the mail delivery substitution API and the :code:`plainMailEncoded()` methods.
Impact
======
Any call to :code:`MailUtility::mail()` or :code:`GeneralUtility::plainMailEncoded()` will result in a fatal error.
The option :code:`$GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['t3lib/utility/class.t3lib_utility_mail.php']['substituteMailDelivery']`
does not have any effect.
Affected installations
======================
Any installation using an extension still using the deprecated API will fail.
Migration
=========
Use the :code:`\TYPO3\CMS\Core\Mail\Mailer` API for sending email.
.. index:: PHP-API