Skip to main content

GUEST/IDM/CONNECT

Security Alert-Watchlist Visitor Check In

Description

This email is sent when a visitor is checked in that potentially matches a watchlist suspect. This notification goes to any identity that holds the security manager role, and can be configured to go to the host or host delegate as well.

Email
email_13.png
Template
<p>Hello,</p>
<p style="color:#E63E2C">
    A visitor has just been checked in who is a possible match with an individual on your company’s Symmetry watch list:  Please log into the system if you would like additional information on the visit or visitor.
</p>

<p>
    @Model.HostInfo
</p>

<p>	
  <ul>
  @foreach(var suspect in Model.Suspects) {
    <li>
      @if(suspect.PhotoUrls != null && suspect.PhotoUrls.Count > 0) {
        <img src="@suspect.PhotoUrls[0]?width=50" />
      }
            <a href="@string.Format("{0}{1}", Model.BaseUrl, suspect.Id)">@suspect.FirstName @suspect.LastName</a>
        </li>
  }
  </ul>
</p>
<p>
  Please sign on to Symmetry to review this check-in, and then take the action appropriate to your company security policy.
</p>
<p>
  Thank you.
</p>
Razor Elements

Element

Description

@Model.HostInfo

The name of the Host or Host Delegate

@if(suspect.PhotoUrls)

If a photo was added of the suspect to the watch list information, it will be displayed in the email. If the value is null (no photo assigned to the watch list entry) then no phot will be displayed

@suspect.FirstName

The first name of the suspect

@suspect.LastName

The last name of the suspect

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.