We have a few examples for you on how to modify the HTML template for e-mail notifications.
Replace the logo
Replace the default tag of the logo <img class="header-logo-img header-logo-size"> with the tag containing your individual logo. If required, also change the height.
Example
<img height=35 src="https://softwareag.scene7.com/is/image/softwareagprod/solution-icon-s?$PNGwithAlpha$">
The logo is replaced and the height is changed.
Provide internet link using the logo
To open a website by clicking the header logo, enclose the img tag with an a tag that specifies the target link.
Example
In our example, we use the img tag that we modified before (Replace the logo).
<a href=https://www.softwareag.com/en_corporate.html target="_blank">
<img height=35 src="https://softwareag.scene7.com/is/image/softwareagprod/solution-icon-s?$PNGwithAlpha$">
</a>
The website link is provided on the logo.
Change the background color of the header
Modify the default background color of the header using the tag <table class="header-bg-color header-text-color header-table">.
Example
<table class="header-text-color header-table" style="background-color:#011f3d;">
The color is changed.
Display intranet link in the footer
To display a link to the intranet in the footer, add a tableRow tag in the footer.
Example
<tr>
<td>
<a class="link-color" href=https://www.softwareag.com/en_corporate.html target="_blank">Intranet</a>
</td>
</tr>
The intranet link is provided in the footer.
Create a company-specific footer
To display a company-specific footer, replace the default footer tableRow tag:
<tr class="mail-text-color help-text-size" >
<td>
<p> You are receiving emails from ARIS Risk and Compliance. </p>
</td>
</tr>
<tr class="mail-text-color help-text-size" >
<td>
<p> Copyright © 2012 - 2022 Software AG, Darmstadt, Germany and/or Software AG USA Inc., Reston, VA, USA, and/or its subsidiaries and/or its affiliates and/or their licensors. </p>
</td>
</tr>
Example
<tr class="mail-text-color help-text-size">
<td> <p> Software AG</p></td>
</tr>
<tr class="mail-text-color help-text-size">
<td> <p> Uhlandstrasse 12 </p> </td>
</tr>
<tr class="mail-text-color help-text-size">
<td> <p> 64297 Darmstadt, Germany</p> </td>
</tr>
After saving your changes, the HTML e-mails should look like this: