Share all details related to your problem, including any error messages you may have received.
hello all
I’m working on email templates.
I would like the emails to all have the same signature, something like
“Thank you, best regards”
but I have several different templates and the signature may change.
I would like to have the signature in a variable on a specific location and I wanted all emails to get this signature. Is it possible? to add this in a variable and put that variable in the emails ?
If it is fixed text that you want to place as signature, then you can place in some property file and then with variable substitution you can populate in all templates with change in details of property file.
But if the use case is about dynamic insertion of some HTML content, then it has been discontinued by SailPoint for security reason.
In simplest way you can use your build process for variable substitution. Please check below link which have SSB deployment steps and in this you will get you variable substitution example also.
Yes but this code need to be added to all the Template , but here good thing is you need to modify only in custom object in case you need to update signature .
<Custom name="Custom_Mail">
<Attributes>
<Map>
<entry key="Email_Template_Text" value="Value that should be inserted."/>
</Map>
</Attributes>
</Custom>