Visit Approval Notification - Missing Approver
Description
This email is sent to Guest Administrators when a visit is scheduled that requires approval but there are no identities that hold the approval role configured in the Visit Approval workflow.

Template
<p>
A visit has been registered by <b>@Model.HostFullName</b> which requires approval, however the required approver does not exist in the system.
<ul>
@foreach(var approverDetail in @Model.MissingApproverDetails) {
<b>@string.Format("<li>{0}</li>", approverDetail)</b>
}
</ul>
<br/>
Please click <a href="@Model.Url">here</a> to review the visitor approval task, or copy and paste the following URL into your favorite browser:
<br/>
@Model.Url
</p>Razor Elements
Element | Description |
|---|---|
@Model.HostFullName | The first and last name of the host |
@Model.MissingApproverDetails | The role that the missing approver should hold |
@Model.Url | The link to the Visit Approval task |
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.