Access Request Expired Content

Description

This email is sent to the identity to notify them that there request has expired. This email is sent 7 days after the request was made if no action is taken on it by the ACR/ACRM.

Information displayed includes:

  • Name of identity
  • Approved Access Groups

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;">
            Notification to Requester
        </td>
    </tr>
    <tr>
        <td>
            <p>@Model.Greeting</p>
            <p>Your request to the following access groups has expired.</p>
            <ul>
                @foreach (var accessGroup in Model.AccessGroups)
                {
                    <li>@accessGroup</li>
                }
            </ul>
            <p>Thank you.</p>
        </td>
    </tr>
    <tr>
        <td align="left" style="background-color: #b2b3b3; padding: 12px;"></td>
    </tr>
</table>

Razor Elements

Element Description
@Model.Greeting Displays the standard greeting for the email
@accessGroup Displays the name of the requested access group(s)

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.