---
title: "Breaking: #29342 - Fluid Email Template for ValidatorTask"
manual: "TYPO3 Core Changelog"
version: "main"
permalink: "https://docs.typo3.org/permalink/changelog:breaking-29342"
source: "Changelog/11.0/Breaking-29342-ImproveValidatorTask.rst"
typo3-version: "11.0"
typo3-major: 11
type: "breaking"
issue: 29342
forge: "https://forge.typo3.org/issues/29342"
tags: ["Backend", "CLI", "NotScanned", "ext:linkvalidator"]
rendered: "2026-09-20T18:31:11+00:00"
---

# Breaking: #29342 - Fluid Email Template for ValidatorTask {#breaking-29342}

See [forge#29342](https://forge.typo3.org/issues/29342)

## Description {#description}

In TYPO3 v10 `ext:linkvalidator` has been improved a lot. The
`\TYPO3\CMS\Linkvalidator\Task\ValidatorTask`, a scheduler task for reporting
broken links via email, has been refactored now.

The old marker template has been replaced by Fluid templates, which are now
used for generating the report email. The marker template has been removed completely
along with corresponding functionality.

The following property of the `ValidatorTask` class has been removed:

-   `$emailTemplateFile`

The following hooks have been removed and won't be executed anymore:

-   `$GLOBALS['TYPO3_CONF_VARS']['EXTCONF']['linkvalidator']['reportEmailMarkers']`
-   `$GLOBALS['TYPO3_CONF_VARS']['EXTCONF']['linkvalidator']['buildMailMarkers']`

The following properties of the `ValidatorTask` class have changed their type:

-   `$page` is now `int`
-   `$depth` is now `int`
-   `$emailOnBrokenLinkOnly` is now `bool`
-   `$configuration` is now `string`

## Impact {#impact}

It is no longer possible to set a custom marker based template file with
`emailTemplateFile`. Instead, the new field `emailTemplateName` can be used to
specify a Fluid template file, see Migration section below.

## Affected Installations {#affected-installations}

All installations which use:

-   the scheduler task and provide a custom template file
-   one of the hooks mentioned above

## Migration {#migration}

Provide your custom templates using the new field `emailTemplateName`
in the scheduler task configuration and add your custom template
path to `$GLOBALS['TYPO3_CONF_VARS']['MAIL']['templateRootPaths']`.

Use the new PSR-14 event `\TYPO3\CMS\Linkvalidator\Event\ModifyValidatorTaskEmailEvent` to adjust the
`\TYPO3\CMS\Linkvalidator\Result\LinkAnalyzerResult` along with the `FluidEmail` object.
