cancel
Showing results for 
Search instead for 
Did you mean: 

Can we send images from SAP IDM as html email

devaprakash_b
Active Contributor
0 Kudos
329

Hello Experts,

I know we can add attachments while sending mail notification from idm, but Can we include images into html mail body and send as mail notifaciton to users from sap idm? is it possible?

/Deva

Accepted Solutions (1)

Accepted Solutions (1)

devaprakash_b
Active Contributor
0 Kudos

Below are two solutions which worked for me in outlook.

1) converting the image into base 64 format and using the code in image tag as below works

<img width="620" src="data:image/png;base64, here maintain the base 64 code " codealt="image">

2) store the images in the organization intranet shared location and adding the image location in the source.

/Deva

Answers (2)

Answers (2)

AndreeaUrsu
Explorer
0 Kudos

Thanks so much for the solutions. Do you know if it is possible to change the notifications in html format?

todor_petrov
Contributor
0 Kudos

Hi Deva,

if I am not mistaken, one of the innovations that were accepted for development this year for IdM is exactly using a new type of Mail API, which will offer a lot of options compared to the existing one.

I am not 100% sure though, so its worth checking it.

BR,

Todor

devaprakash_b
Active Contributor
0 Kudos

Thank you Todor for your response. I found a way two solutions. Both of them worked fine in outlook.

1) converting the image into base 64 format and using the code in image tag as below works

<img width="620" src="data:image/png;base64, here maintain the base 64 code " codealt="image">

2) store the images in the organization intranet shared location and adding the image location in the source.

/Deva