I had a flow that will capture some screen and then using outlook to send out email via html insert image in body. The image suddenly cannot shown start from last Sat. Is it Microsoft or Uipath issue?
Hi @bschk
I think issue is that image that u had attached in mail body by outlook activity is not seen
I think u had include the image file from ur machine itself, so instead of adding filepath of image in HTML. Upload the image to some cloud storage and then use the url to be inserted as path in HTML code.
Use this methods to add images from a folder through sending an mail
( AttachmentType )( oAttachmentvar )=new Attachment( Imagepath )
oAttachment.ContentId=“imageContent1”
while using send smtp activity/Outlook activity you need pass Argument values as your "Imagepath"
You need to convert the image file to base64 format then put the base64 format string into your email body. This way you can simply delete the image afterwards without having to store it in any NAS or cloud storage…
Use my workflow to convert image to base64 string:
pass in your image path and it will output a string