Image in Email Body - Using Send Email Activity

@NIVED_NAMBIAR and @Pravin_Patil1
Thanks both of you for assisting me.

Got the solution.

  1. Read image into Byte
    byteArray=System.IO.File.ReadAllBytes(“Image.jpg”)

  2. Convert Byte Array to base64 String
    base64String=Convert.ToBase64String(byteArray)

  3. Place the base64String inside the HTML img tag
    “<img src=”“data:image/jpg;base64, base64String”“alt=”“Red Dot”“>”

  4. Happy Face → you will see the image in the email body as output.

2 Likes