Hello Community
I’m trying to send an email with attach screenshot
I don’t want to save the screenshot on my device I want to send it directly by email
I have used :
1-Take screenshot
2-Save Image
3-Send Outlook Mail Message ( with attached screenshot )
Then when it comes to the mail activity it gives me an error “Send Outlook Mail Message: Cannot find this file. Verify the path and file name are correct”
I don’t understand these solutions if anyone can explain them to me in detail I will be thankful
Anil_G
(Anil Gorthi)
January 10, 2023, 2:01pm
5
@kalmajhad
Can you show what you are doing?
Did you attach the file with fullpath? And did you use img tag?
Cheers
Hi,@kalmajhad
can you try below screenshot,
Cheers
Anil_G
(Anil Gorthi)
January 11, 2023, 8:37am
8
@kalmajhad
You have to give input as "static_image.png"
and you have to include a image tag if you want to display…
How to send embedded images in an email using UiPath?
Issue Overview In most email clients, it is possible to send embedded images in an email. A common question is how to do this using UiPath. This guide will explain a few different ways that this can be done. Technical Overview This guide will cover three ways of embedding in image in a UiPath email.
Using a base64 encoded image - This is one of the easiest methods but clients like Gmail will block the image from being displayed
…
Hope this helps
Cheers
Anil_G
(Anil Gorthi)
January 15, 2023, 9:08am
10
@kalmajhad
Did you try adding img tag and in attachments as shown in this post?
@tomaz
Attach the image as an attachment say the image is text.png
then in body use <img src="text.png">
If writing directly in the body field as string then
"<img src=""text.png"">"
cheers
Cheers