Skip to main content

GUEST/IDM/CONNECT

Visit Authorization-Host Could Not Be Reached

Description

This email is sent to a visitor who has utilized the kiosk that has been configured to require visit authorization from the Host, but the selected Host for the visit could not be reached via the provided contact details.

Email
Host_dcouldnt_be_reached.png
Template
<p>
	Dear <b>@Model.VisitorFullName</b>, 
</p>
<p>
	Unfortunately we were unable to reach the Host at the number you entered. Please take a moment to confirm the Visit details below and ensure they are accurate. 
</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>
<br/>
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.