Inbound Email Signature translated into hyperlink

ebetuer
Tera Contributor

Hi All,

What needs to be done to avoid inbound email signature icons/images to be translated into a hyperlink.

Please see images below:

ebetuer_0-1694586991585.png

 

6 REPLIES 6

Unless, you want to try to find every possible scenario of how these are coming in, and how to manipulate the html to display it in a correct way, you can't do anything.

If you really are determined to change it, you will need to create a Business Rule on the sys_email table. However, I would highly discourage you to do so.


Help others to find a correct solution by marking the appropriate response as accepted solution and helpful.

Chris Hagy
Tera Expert

There is a ootb function you could use to strip the HTML out of your incoming emails but you will need to try and figure out how to section off any parts you would want to apply this against vs the entire email which may not be ideal.

 

 

var strBody = email.body;
var strNewBodyWithNoHTML = GlideSPScriptable().stripHTML(strBody)