Visit Approval - Visit Approved

Description

This email is sent to Guest Hosts and Host Delegates to notify them that there has been approved.

Email

Template

Single Visitor

<p>
  Your visit, scheduled for <b>@Model.VisitDate</b> with <b>@Model.VisitorFullName</b> has been approved and your visitor have been successfully registered.
</p>

Group Visits

Your visit for 
<ul>
	@foreach(var visitorFullName in @Model.VisitorsFullNames) {
    <b>@string.Format("<li>{0}</li>", visitorFullName)</b>
    }
</ul>
has been submitted and is currently pending approval. You will be notified once the approval process is complete.

Razor Elements

Element Description
@Model.VisitDate The date of the visit
@Model.VisitorFullName The first and last name of the visitor(s)

{% 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 %}