Visit Arrival

Description

This emails is set to the host to inform them that there visitor(s) has been checked in.

Email

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 visit checked in at
@Model.VisitorPhotoDto The photo of the visitor

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