Skip to main content

GUEST/IDM/CONNECT

Identity Expiration Notification - Identity

Description

This email is sent to any affected IDM identity to notify them that their record is set to expire. This email will be sent to all identities expiring in the date ranges configured via the IDM / Configuration / Notification / Identity Expiration page.

Identity information displayed includes:

  • Number of days until expiration

  • Date of expiration

Note

The first and last name will be linked to the Identity's record in IDM

Email
email_5.png

Template

<table width="700" cellpadding="16" style="font-size: 11px;font-family: Arial, lucida console, sans-serif;">
    <tr>
        <td align="left" style="background-color: black; color: white; font-size:18px; font-weight: bold;">
      Upcoming identity expiration for Identity
        </td>
    </tr>
    <tr>
        <td>
            <p>@Model.Greeting</p>
            <p>Please be advised that your identity is set to expire in @Model.IdentityExpiration.DaysLeft Day(s) on @Model.IdentityExpiration.ExpirationDate.Date.ToShortDateString()
            <p></p>
            <p>Thank you.</p>
        </td>
    </tr>
    <tr>
        <td align="left" style="background-color: #b2b3b3; padding: 12px;"></td>
    </tr>
</table>
Razor Elements

Element

Description

@exp.DaysLeft

Displays the number of days left until expiration as an integer

@exp.ExpirationDate

Displays the actual expiration date of the identity

@Model.Greeting

Displays a greeting that includes the Identity's first and last name

Warning

It is strongly recommended that these elements be used as-is with the only edits being to remove them if the information generated is not desired.