This email is set to Guest Administrators when a visit is scheduled that requires approval however there are no approvers in the system.
<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>
Element | Description |
---|---|
@Model.HostFullName |
The first and last name of the host |
@Model.MissingApproverDetails |
The first and last name of the visitor |
approverDetail |
The justification for the visit |
@Model.Url |
The URL to the visit |
{% notice warning %}
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.
{% /notice %}