---
title: "Feature: #78332 - Allow setting a default replyTo-email-address for notification-mails"
manual: "TYPO3 Core Changelog"
version: "main"
permalink: "https://docs.typo3.org/permalink/changelog:feature-78332"
source: "Changelog/9.2/Feature-78332-AllowSettingADefaultReplyTo-email-addressForNotification-mails.rst"
typo3-version: "9.2"
typo3-major: 9
type: "feature"
issue: 78332
forge: "https://forge.typo3.org/issues/78332"
tags: ["LocalConfiguration", "PHP-API"]
rendered: "2026-09-20T18:31:11+00:00"
---

# Feature: #78332 - Allow setting a default replyTo-email-address for notification-mails {#feature-78332}

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

## Description {#description}

Two new LocalConfiguration settings have been introduced:

```php
$GLOBALS['TYPO3_CONF_VARS']['MAIL']['defaultMailReplyToAddress']
$GLOBALS['TYPO3_CONF_VARS']['MAIL']['defaultMailReplyToName']
```

Also a new function to build a mail address for SwiftMailer from these settings is introduced:

```php
MailUtility::getSystemReplyTo()
```

If no default reply-to address is set this function will return an empty array.

This function is used in `ContentObjectRenderer::sendNotifyEmail()` to set a ReplyTo address in case no address is
supplied in the function parameters.
In other places where notifications are sent for e.g. (failed) login attempts, reports and where the notification uses
the system from address this function is also used.

## Impact {#impact}

It's now possible to set a reply-to address for notification mails from TYPO3. Extensions can also use this system
reply-to address by calling `MailUtility::getSystemReplyTo()`.
