Skip to main content

GUEST/IDM/CONNECT

Access Group Approved

Description

This email is sent to the identity that requested access (and the identity that the access is for, if different) to notify them that their request has been approved.

Information displayed includes:

  • Name of identity

  • Approved Access Groups

  • Full name of the requester. This is only applicable if the access was requested on behalf of another identity.

Email

The example email below is where the user submitted a credential request themselves. If the credential was requested by another identity on behalf of the recipient, the email will also display the full name of the identity that requested the credential request.

email_3.png
Template

Note

If a value is detected in @Model.OnBehalfOfRequesterFullName then requested by (requester full name) will be included in the email.

<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>
            @if (string.IsNullOrEmpty(@Model.OnBehalfOfRequesterFullName))
            {
                <p>Your access to the following access groups has been approved.</p>
            }else{
                <p>Your access to the following access groups, requested by <b>@Model.OnBehalfOfRequesterFullName</b>, has been approved.</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
Table 1. 

Element

Description

@Model.Greeting

Displays the first name of the email recipient.

@accessGroup

Displays the name of the approved access group.

@Model.OnBehalfOfRequesterFullName

Displays the full name of the of the identity (on behalf of the recipient) who requested the approval. This is only applicable if the access was requested on behalf of another identity.



Warning

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