---
title: "change-password"
source: https://dev.pageseeder.com/guide/configuration/emails/templates/change-password.html
description: "Template for password change notification emails sent to users. Includes email headers, XML structure with member details, and HTML email content example."
last_updated: 2026-09-08T13:38:23+10:00
tokens: ~244
---

# change-password template

To help inform and protect users, whenever an account password is changed, this notification is sent to the registered email address. 

## Email headers

| Name | Value |
| --- | --- |
| `Auto-Submitted` | `auto-generated` |
| `From` | `PageSeeder (DO NOT REPLY) <pageseeder@emaildomain>` |
| `Subject` | `Your password has been updated` |
| `To` | Member email address |

## XML

PageSeeder produces the following XML for the XSLT template:

```xml

<notification template="change-password"
              emaildomain="example.org"
              hosturl="https://example.org">

  <!-- The member whose password updated -->
  <member id="12"
          firstname="John"
          lastname="Jones"
          email="jjones@email.com">
    <fullname>John Jones</fullname>
  </member>
</notification>
```

## Usual content

Following is a screenshot of the HTML email:

![change-password\_v60000.png](/content/images/email/change-password_v60000.webp)

