How to change the look and feel of Identity Governance e-mail templates?
The default look and fell of e-mail templates sometimes needs be adjusted.
they are HTML based like the following example:
<Please see attached file for image>
This example shows that default template have border and client wants remove the border will need edit the html table to shows something like this without the borders around the main text:
<Please see attached file for image>
1. Go to folder :\Program Files\CA\RCM\Server\eurekify-jboss\server\eurekify\deploy\eurekify.war
OR in Jboss 7.2
jboss-eap-7.2.0\jboss-eap-7.2\standalone\deployments\eurekify.war
2. Backup the file BusinessFlowMail.html for example to BusinessFlowMail - Copy.html.
3. Edit the file BusinessFlowMail.htm and comment out or change the line 13 of file.
3.1 To comment change from
<table width="800" border="1" cellpadding="0" cellspacing="0" align="center">
To:
<!-- <table width="800" border="1" cellpadding="0" cellspacing="0" align="center"> -->
3.2 To change you will need go from:
<table width="800" border="1" cellpadding="0" cellspacing="0" align="center">
To
<table width="800" border="0" cellpadding="0" cellspacing="0" align="center">
4. Restart Jboss to effective the change.
5. Send a new campaign or mail escalation to check the results.