---
title: "reset-password-confirm"
source: https://dev.pageseeder.com/guide/configuration/emails/templates/reset-password-confirm.html
last_updated: 2026-08-07T17:09:54+10:00
tokens: ~378
---

# reset-password-confirm template

The email is sent to a user to allow them to confirm that they requested their password to be reset.

A link is provided in the email to the user to allow them to confirm that password reset.

## Email headers

This message sets the following headers by default:

| Name | Value |
| --- | --- |
| `Auto-Submitted` | `auto-generated` |
| `From` | `PageSeeder (DO NOT REPLY) <pageseeder@emaildomain>` |
| `Subject` | `Update your password` |
| `To` | Email address of user |

## XML

PageSeeder produces the following XML for the XSLT template:

```xml

<notification template="reset-password-confirm"
              emaildomain="example.org"
              hosturl="https://example.org"
              reason="member"
              token="ujHidAn9kKjObQuVbl_vLMc9npOjAKj2">

  <!-- The member who requested a reset password -->
  <member id="12"
          firstname="John"
          lastname="Jones"
          email="jjones@email.com"
          username="jjones"
          status="activated">
    <fullname>John Jones</fullname>
  </member>
</notification>
```

The `token` attribute is a base64url string that is different from the key and shouldn’t require URL-escaping. This token expires after 12 hours.

> **Obsolete:** The `key` attribute is  no longer included.

## Usual content

Following is a screenshot of the HTML email:

![reset-password-confirm\_v60000.png](/content/guide/configuration/emails/templates/../../../../images/email/reset-password-confirm_v60000.webp)

