I am using O365 for the first time in reframework and i need guidance
where should i use this activity ?? like i want the email to be send once a day for all the transaction which are processed
for example my email 2will look like : transaction 22 , successfull:21/failed: 1 , 02/03/2024
how to achieve this ??
like how can i get the transaction summary from my orchestrator ?? like number and status
and where should i write the email in order to be sent just only once.
You can try using Get Queue Items activity, use the properties of From and To to provide the date and timestamp,
Select Successful and Failed Transactions.
TOp 1000
And get the output.
Loop through the QueueItems retrieved, use 2 counter variables to read the status and increment the counters if status is Successful/ Failed.
Later you can send these variable in the mail body.
I’ll suggest to keep this at the end of your performer.
Or else keep this altogether a separate process. Tryqueue.zip (3.4 KB)
Attached the project for your reference.
Hope it helps!
Happy Automation!
Please mark it as a solution if that works