Potential Watchlist Match - 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

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
@suspect.FirstName The first name of the visitor
@suspect.LastName The last name 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 %}