Deprecation: #96500 - ContentObjectRenderer->getMailTo
See forge#96500
Description
Since forge#96483, the
<f:
ViewHelper is directly
using Typo
for the email link generation. As a result, the
Content
method was only used in
Email
, the central place for building email links
with Typo
.
To stick to the separation of concerns principle, the corresponding
functionality has been moved to
Email
and the
Content
method has been
marked as deprecated.
Impact
Calling
Content
will trigger a
PHP
E_
error. The extension scanner will
find usages as weak match.
Affected Installations
All installations directly calling
Content
in custom extension code.
Migration
All occurrences in extension code have to be replaced by
Email
.