How to use and Implement Reframe work in uipath?

@Vajrang
how to automate excel and send feedback to mail

1 Like

In reframework we have multiple stages

Make an input excel file with feedback details in one column and emails to next column in respective rows

  1. in first run add activity read range and read the excel sheet and output must be assigned to dtTransactiondata
  2. Add bulk queue items
    input is dttransaction Data
    Queuename to which items must be added

in process workflow

add send email activity

to : inTransactionItem.SpecificContent(“emailKey”)
Subject: Feedback
Body: inTransactionItem.SpecificContent(“feedback”)

execute the code all data will be sent to respective users

Note: use outlook activities to avoid setup

6 Likes

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.