Image not loading in outlook

i am attaching an image in outlook under signature, even though image is available in the path, getting the following error…
i have checked the height and width properties, they are as per image only…

Hi @devasaiprasad_K ,

Did you insert the Image after converting it into Base64 string?

If its possible to share your wokflow or the body of the Mail, please share
it.

Regards,

@devasaiprasad_K,

Show the logic of how you are sending the image in email.

Thanks,
Ashok :slight_smile:

@devasaiprasad_K,

src of local file don’t work here in email. You should be converting the image to Base 64 format and then pass that into email body.

Follow this tutorial for the solution

Thanks,
Ashok :slight_smile:

@devasaiprasad_K ,

1.Use an assign activity
ImagePath="your\image\path.jpg"

2.Again use a Assign Activity(to Convert it to base 64 )

EncodedString = "data:image/jpeg;base64,"+Convert.ToBase64String(System.IO.File.ReadAllBytes(ImagePath))

3.Now pass this EncodedString variable in the place where you previously mentioned your filepath.

Regards,

ok… sure Let me check