This discussion has been locked. The information referenced herein may be inaccurate due to age, software updates, or external references.
You can no longer post new replies to this discussion. If you have a similar question you can start a new discussion in this forum.

How to add the AD Description attribute into the email alert Trigger Actions ?

Hi All,

How can I add the Active Directory "Description" field into the existing email alert in Solarwinds SAM v6.9?

I have customized the template like below, but not sure how to add the most important AD field to make the email alert more meaningful.

<html>

   <head>

      <style type="text/css"></style>

   </head>

   <body>

      <table class='alert' style="border:3px solid #FF7D7D;border-collapse:collapse;font-family:Verdana;font-size:10pt;">

         <tr>

            <th colspan="2" style="border-bottom:3px solid #FF7D7D;padding:5px;background-color:#FFE0E0">CRITICAL - System Down Event</th>

         </tr>

         <tr>

            <td>Alert: </td>

            <td>CRITICAL: The Following Node Has Gone Down</td>

         </tr>

         <tr class='alt'>

            <td style="background-color:#FFE0E0;text-align:justify;padding:3px" >Node Name</td>

            <td style="background-color:#FFE0E0;text-align:justify;padding:3px">${NodeName}</td>

         </tr>

         <tr>

            <td>Location</td>

            <td>${Node.location}</td>

         </tr>

         <tr class='alt'>

            <td style="background-color:#FFE0E0;text-align:justify;padding:3px">System Name</td>

            <td style="background-color:#FFE0E0;text-align:justify;padding:3px">${Node.DNS}</td>

         </tr>

         <tr>

            <td>IP Address</td>

            <td>${Node.IP_Address}</td>

         </tr>

         <tr class='alt'>

            <td style="background-color:#FFE0E0;text-align:justify;padding:3px">Node URL</td>

            <td style="background-color:#FFE0E0;text-align:justify;padding:3px"><A href=${NodeDetailsURL}>Click Here</A></td>

         </tr>

         <tr>

            <td>Time of Alert</td>

            <td>${Time}     ${Date}      ${Day}</td>

         </tr>

      </table>

   </body>

</html>

Thank you in advance.