Symantec Privileged Access Management

  • 1.  privilege account request - email notification

    Posted Oct 06, 2017 05:24 PM

    I want to set up the email notification for privilege account request.

    I am looking to modify the file

    pending\CreatePrivilegedAccountExceptionEvent

    How do I get to the Manager field to put in the to list here?

    <!-- Define the E-mail Properties --->

    <%

    _cc = "" ;

    _bcc = "" ;

    _subject = "Privileged account access requested by: " + _eventContextInformation.getAdminName() + " is waiting your approval";

    %>



  • 2.  Re: privilege account request - email notification
    Best Answer

    Broadcom Employee
    Posted Oct 11, 2017 11:37 AM

    I am not sure if this will work, but if you look at other templates, you can actually add the _to field. For instance

     

    <%
     _to = _util.getNotifiers("ADMIN");
     _cc = "";
     _bcc = "" ;
     _subject = _taskContextInformation.getTaskName()+ " Task - Approved ";
    %>