Visit Arrival
Description
This email is sent to the Host / Host Delegate to inform them that their visitor(s) has been checked in.

Template
Single Visitor:
<p>
  Your visitor, <b>@Model.VisitorFullName</b>, has arrived at <b>@Model.BuildingName</b>, and is currently waiting for you in the @string.Format("{0}", string.IsNullOrWhiteSpace(Model.LobbyName) ? string.Empty : string.Format("{0} ", Model.LobbyName))lobby.
</p>
@if (Model.VisitorPhotoDto != null)
{
    <p>
        <img src="@Model.VisitorPhotoDto.Uri" />
    </p>
}
<p>
  Please act on this accordingly per your current building procedures.
</p>
<br />Group Visits
<p>
	Your visitors:
	<ul>
	@foreach(var visitorFullName in @Model.VisitorsFullNames) {
    <b>@string.Format("<li>{0}</li>", visitorFullName)</b>
    }
	</ul>
	have arrived at <b>@Model.BuildingName</b>, and are currently waiting for you in the lobby.
</p>
<p>
	Please act on this accordingly per your current building procedures.
</p>
<br />Razor Elements
Element  | Description  | 
|---|---|
@Model.VisitorFullName  | The first and last name of the visitor  | 
@Model.BuildingName  | The building the visit is scheduled in  | 
Model.LobbyName  | The lobby the visitor checked in at (if configured)  | 
@Model.VisitorPhotoDto  | The photo of the visitor  | 
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.