I have validated that the base64 encoded image renders in Outlook but when I paste in the email template () and save the email template, IdentityNow ends up saving it as a blob like so:
Has anyone else recently been able to embed base64 encoded images in email templates or did an existing IdentityNow bug resurface?
I encountered a similar situation recently, and after trying different ways (including Base64 encoding) what worked for me was to directly include the URL of the logo in the tenant. I used this because the image to be embedded was the logo anyway.
However, you can include the URL of any image from anywhere on the web. e.g. <img style="width: 200px;" src="https://fullURLhere/image.png">
UPDATE: The issue was resolved when we compressed the image and changed the height & width. I think SailPoint does not even try to send the image when it is above a certain size (maybe it has to do with blob rehosting in IdentityNow).
For reference, image embedding failed when the image size was 35kb but worked when we compressed down to 5kb.