Exemples de modification des notifications par e-mail HTML

Nous vous proposons quelques exemples de modification du modèle HTML pour les notifications par e-mail.

Remplacer le logo

Remplacez la balise par défaut du logo <img class="header-logo-img header-logo-size"> par la balise contenant votre propre logo. Si nécessaire, modifiez également la hauteur.

Exemple

<img height=35 src="https://softwareag.scene7.com/is/image/softwareagprod/solution-icon-s?$PNGwithAlpha$">

Le logo est remplacé et la hauteur est modifiée.

Fournir un lien internet en utilisant le logo

Pour ouvrir un site web en cliquant sur le logo d'en-tête, entourez la balise img d'une balise a qui spécifie le lien cible.

Exemple

Dans notre exemple, nous utilisons la balise img que nous avons modifiée précédemment (Remplacer le 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>

Le lien vers le site web est indiqué sur le logo.

Modifier la couleur d'arrière-plan de l'en-tête

Modifiez la couleur de fond par défaut de l'en-tête à l'aide de la balise <table class="header-bg-color header-text-color header-table">.

Exemple

<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.

Exemple

<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>

Exemple

<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>

Après avoir enregistré vos modifications, les e-mails HTML devraient ressembler à ceci :

Modèle HTML modifié