Access Request Reminder Content

Description

This email is sent to the ACR/ACRM to remind them that they have pending access requests for them to act on. These emails will be sent once per day until the request expires.

Information displayed includes:

  • Name of Requesting identity
  • Requested 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 Access Control Representative
        </td>
    </tr>
    <tr>
        <td>
            <p>@Model.Greeting</p>
            <p> This is a reminder that @Model.RequesterFullName has submitted a request to get access to the following groups.</p>
            <ul>
                @foreach (var accessGroup in Model.AccessGroups)
                {
                    <li>@accessGroup.Key</li>
                }
            </ul>

            <p>Please review and <a href='@Model.ActionUrl'>approve/ reject</a> this request.
            </p>
            <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 rejected access group(s)
@Model.ActionUrl A URL that will take the ACR/ACRM to the request
@Model.RequesterFullName The full name of the identity making the request

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.