Identity Expiration Notification - Identity

Description

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

Identity information displayed includes:

  • Number of days till expiration
  • Date of expiration

The first and last name will be linked to the identities record in IDM

Email

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 unit expiration as an integer
@exp.ExpirationDate Displays the actual expiration date of the identities
@Model.Greeting Displays a greeting that includes the identities first and last name

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.