Security Alert-Watchlist Visitor Registration
Description
This email is sent when a visitor is registered, 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.

Template
<p>Hello,</p> <p style="color:#E63E2C"> A host has just scheduled a visitor 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="@suspect.Url">@suspect.FirstName @suspect.LastName</a> </li> } </ul> </p> <p> Please sign on to Symmetry to review this visitor, 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 photo 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.