---
title: "membership-confirm"
source: https://dev.pageseeder.com/guide/configuration/emails/templates/membership-confirm.html
description: "Email template sent to users invited to a PageSeeder group. Recipients must accept the invitation via provided link to become active members, otherwise they remain pending. Includes inviter details and group information."
last_updated: 2026-09-08T13:38:18+10:00
tokens: ~479
---

# membership-confirm template

The email is sent to a user when they are invited to a group.

They must accept the invitation using the link provided in the email before they become a group member. Until then, they appear as a *‘**pending*’ member of the group.

It is also possible for a user to accept an invitation directly through the PageSeeder user interface.

## Email headers

This message sets the following headers by default:

| Name | Value |
| --- | --- |
| `Auto-Submitted` | `auto-generated` |
| `From` | Inviter or group, see [From address](/guide/configuration/emails/from.md) |
| `Sender` | `pageseeder@emaildomain` |
| `Subject` | `[`*group name*`] Group invitation` |
| `To` | Email address of invited member |

## XML

PageSeeder produces the following XML for the XSLT template:

```xml

<notification template="membership-confirm"
              emaildomain="ps.pageseeder.com"
              hosturl="https://ps.pageseeder.com">

  <!-- The membership to confirm -->
  <membership id="123"
              email-listed="true"
              notification="immediate"
              status="invited"
              role="reviewer">
    <member id="12"
            firstname="John"
            surname="Jones"
            email="jjones@email.com"
            username="jjones">
      <fullname>John Jones</fullname>
    </member>
    <group id="3"
           name="acme-test"
           description="ACME test group"
           owner="acme"></group>
  </membership>

  <!-- The member who invited this member to the group -->
  <inviter id="77"
           firstname="Alice"
           surname="Thomson"
           email="athomson@example.org"
           username="athomson">
    <fullname>Alice Thomson</fullname>
  </inviter>

</notification>
```

## Usual content

Following is a screenshot of the HTML email:

![membership-confirm\_v60000.png](/content/images/email/membership-confirm_v60000.webp)

