<html lang="de-de" dir="ltr"><head></head><body>### [wpforms_emails_mailer_get_reply_to_address](https://wpforms.com/developers/wpforms_emails_mailer_get_reply_to_address/)

**Published:** September 29, 2025
**Author:** Umair Majeed

**Content:**

## Description

The `wpforms_emails_mailer_get_reply_to_address` filter lets you change the Reply-To email address for User Registration addon used in WPForms emails.

parametertypedescription`$reply_to`stringThe current Reply-To address that WPForms is about to use. Return a different string to override it.`$email`objectThe email object instance. Provides access to email templates and properties.## Source

`wpforms/src/Emails/Mailer.php`

## Example

```

/**
 * Set a custom Reply-To address for User Registration emails only.
 *
 * @link https://wpforms.com/developers/wpforms_emails_mailer_get_reply_to_address/
 *
 * @param string $reply_to Current Reply-To address.
 * @param object $email    The email object instance.
 *
 * @return string
 */
function wpf_dev_user_registration_reply_to( $reply_to, $email ) {

    // Target User Registration general notifications.
    if ( isset( $email-&gt;template )
        &amp;&amp; $email-&gt;template instanceof \WPFormsUserRegistration\EmailNotifications\Templates\General ) {

        // Use a dedicated inbox for replies from registration emails.
        $reply_to = 'support@yourdomain.com';
    }

    return $reply_to;
}
add_filter( 'wpforms_emails_mailer_get_reply_to_address', 'wpf_dev_user_registration_reply_to', 10, 2 );

```

## Reference Article

- [How to Customize the From Email Address for the Save and Resume Addon](https://wpforms.com/developers/how-to-customize-the-from-email-address-for-the-save-and-resume-addon/)

**Categories:** Filters Hooks

---

</body></html>