Hello, community
I have a list of screenshots of the location path. I want to insert each and every image one by one in the outlook email body.
How can we do this?
Best Regards,
Vrushali
Hello, community
I have a list of screenshots of the location path. I want to insert each and every image one by one in the outlook email body.
How can we do this?
Best Regards,
Vrushali
try this to build html:
You’ll have to use “Load Image” to get the img
variable then convert to base64
then,
html = ""
for each filepath
in screenshots_folder:
html+String.Format("<p>{0}<br><img src=""data:image/png;base64, {1}"" width=""1280"" height=""720""><br><hr></p>", {path.GetFileName(filepath), img.Scale(1).Base64})
@prasath_S @nameless Yes, It is solved. Thank you for your response.
Best Regards,
Vrushali
Happy to hear ,mark the solution if it helps. thanks…