- Case Manager i56 Release Notes
- What's New
- Known Issues
- Issues Fixed in Case Manager i56.5 (General Availability)
- Issues Fixed in Case Manager i56.6
- Issues Fixed in Case Manager i56.7
- Issues Fixed in Case Manager i56.8
- Issues Fixed in Case Manager i56.9
- Issues Fixed in Case Manager i56.10
- Issues Fixed in Case Manager i56.11
- Issues Fixed in Case Manager i56.12
- Get Started with Case Manager
- Configure Case Manager Settings
- Investigate a Security Incident
- Manually Create an Incident
- Edit an Incident
- Delete an Incident
- Manually Assign an Incident to a Queue, Assignee, Priority, or Status
- Manually Add an Entity
- Manually Add an Artifact
- Delete an Entity or Artifact
- Add Advanced Analytics Evidence to a Case Manager Incident
- Manage Tasks During an Investigation
- Send Messages from an Incident
- Filter Incidents
- Search for an Incident
- Sort Incidents
- Export Incidents
Create a Template for Case Manager Email Notifications
Customize email notifications about Case Manager activity using templates.
In the navigation bar, click the menu , select Settings, then select Analytics.
Under Case Management, select Email Notifications, then select the EMAIL TEMPLATES tab.
Click Add Email Template.
Configure the template settings:
Template Type – Select Case Manager Notification
Template Name – Name the email template. You use this name to identify the template when you configure email notifications.
Subject – Enter the subject line for the email notification.
In the text box, create the email body using Scalate's Mustache HTML template language.
Under Variable Fields, view all the template variables you can use in the email body. For the Case Manager Notification template type, you can only use the variables under Case Manager Incident Fields.
You can create a more elaborate email with CSS formatting; for example:
<!DOCTYPE html> <html lang="en"> <head> <title>Exabeam Case Manager</title> <style type=\"text/css\"> body { background:#F4F6F8; font: 15px arial, sans-serif; } #sides{ display: flex; } #sides_left{ flex-grow: 1; padding-left: 10px; } #header { -webkit-box-shadow: 2px 2px 2px 0px rgba(71,79,88,1); -moz-box-shadow: 2px 2px 2px 0px rgba(71,79,88,1); box-shadow: 2px 2px 2px 0px rgba(71,79,88,1); background:#6ABA4F; color: #FFFFFF; font: 20px arial, sans-serif; width: 800px; padding: 10px; margin-top: 30px; margin-left: auto ; margin-right: auto ; } #block { -webkit-box-shadow: 2px 2px 2px 0px rgba(71,79,88,1); -moz-box-shadow: 2p2 2px 2px 0px rgba(71,79,88,1); box-shadow: 2px 2px 2px 0px rgba(71,79,88,1); background:#FFFFFF; color: #000000; font: 16px arial, sans-serif; width: 820px; margin-top: 15px; margin-left: auto ; margin-right: auto ; } #block_header { width: 800px; padding: 10px; background: #E9ECF0; color: #2B2C34; margin-left: auto ; margin-right: auto ; } #block_body { width: 800px; background: #FFFFFF; color: #2B2C34; padding: auto; padding-top: 20px; padding-bottom: 20px; margin-left: auto ; margin-right: auto ; } </style> </head> <body> <div id=\"header\">Exabeam Case Manager</div> <div id=\"block\"> <div id=\"sides\"> <div id=\"sides_left\"> <div id=\"block_body\"> <h2>Email boilerplate</h2> <p><b>{{currentUser}}</b> edited <a href="{{incidentUrl}}">{{incidentId}}</a>.</p> </div> </div> </div> </div> </body> </html>
You can also create something more simple; for example:
<html> <head> </head> <body> <b>{{currentUser}}</b> edited <a href="{{incidentUrl}}">{{incidentId}}</a>. </body> </html>
Click SAVE. Now, you can select this template when you configure Case Manager email notifications.