How to send the screen short from mail body?


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,

  1. Take the Screenshot:
  • Use the Take Screenshot activity to capture the screenshot. No need to indicate take screenshot if you want indicate.

image
image

  1. Convert the Screenshot to Base64 :slight_smile:
  • base64String = Convert.ToBase64String(screenshot)
  1. 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>"

  2. Send the Email :

    Subject = “Screenshot”,
    Body = htmlBody,
    IsBodyHtml = True

Regards,
Gowtham K

@VENKATESH2,l

Follow this solution.