this is screen short i have send this mail body in this screen short. i have try it so many time but not getting the respons. i hope MVP memebers so please give flow if it possible . i am waiting for yours reply
Hi @VENKATESH2
Try this way,
- Take the Screenshot:
- Use the
Take Screenshot
activity to capture the screenshot. No need to indicate take screenshot if you want indicate.
- Convert the Screenshot to Base64
- base64String = Convert.ToBase64String(screenshot)
-
Create the HTML body with the embedded image
htmlBody ="<html><body><h1>Here is your screenshot:</h1><img src='data:image/png;base64," & base64String & "' /></body></html>"
-
Send the Email :
Subject = “Screenshot”,
Body = htmlBody,
IsBodyHtml = True
Regards,
Gowtham K
Follow this solution.