Visit Authorization - Host Is Notified
Description
This email is sent to a visitor who has utilized the kiosk that has been configured to require visit authorization from the Host, and the selected Host has been notified about the visit.

Template
<p> Dear <b>@Model.VisitorFullName</b>, </p> <p> Thank you for registering your Visit. Your Host has been notified of your Visit Request. We will send you an email notification once the Host responds. </p> <p> Please take a moment to review the Visit Information below for accuracy: </p> <p> <b>VISITOR:</b><br/> @Model.VisitorFullName<br/> @Model.VisitorCompany<br/> @Model.VisitorEmail<br/> @if (Model.VisitorMobilePhone != null) { @Model.VisitorMobilePhone<br/> } </p> <p> <b>HOST:</b><br/> @Model.HostFullName<br/> @Model.HostCompany<br/> @Model.HostEmail<br/> @if (Model.HostMobilePhone != null) { @Model.HostMobilePhone<br/> } </p>
Razor Elements
Element | Description |
---|---|
@Model.VisitorFullName | The visitor's full name (first name and last name) |
@Model.VisitorCompany | The visitor's company name |
@Model.VisitorEmail | The visitor's Email address |
@Model.VisitorMobilePhone | The visitor's mobile phone number |
@Model.HostFullName | The host's full name (first name and last name) |
@Model.HostCompany | The host's company name |
@Model.HostEmail | The host's Email address |
@Model.HostMobilePhone | The host's mobile phone number |
Note
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.