Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.envless.cloud/llms.txt

Use this file to discover all available pages before exploring further.

When it fires

After the ResendInvite internal controller successfully creates a fresh invite token and queues a new email.
A new token is generated each time — old tokens are not invalidated automatically, but they will expire on their original schedule.

Payload

{
    type: 'member.invite_resent',
    data: {
        member: {
            id: string
            email: string
        }
    }
}

Example

{
    "type": "member.invite_resent",
    "data": {
        "member": {
            "id": "0192a1b2-c3d4-7000-8000-000000000060",
            "email": "alice@example.com"
        }
    }
}