Document understand

Hi @Shah_Rukh

You can send the extracted data from Document Understanding via email within your UiPath Studio Web workflow.

Steps:

  1. Extract Data:
  • This step is already done using Document Understanding. Store the extracted data in variables (e.g., extractedData).
  1. Compose Email Body:
  • Use the “Create String” activity to format the extracted data into a readable email body. You can include headers, labels, and the actual extracted values.
  • Example: "Extracted Data:\n\n" + "Invoice Number: " + extractedData("InvoiceNumber").ToString + "\n" + "Total Amount: " + extractedData("TotalAmount").ToString
  1. Send Email:

I hope this helps! Happy automating! :blush: