I would like to know if it is possible to perform email filtering using the For Each Email activity with Gmail?
I created a process that performs the extraction of emails in the inbox on a Gmail address, but by default the order of extraction is always from the most recent emails to the oldest emails and I would like to reverse that order.
@lakshman
In fact, the method is working. It is performing order reversal by extracting the emails from oldest to newest. But it is not respecting the email limit I set in the filtering and it is extracting more than 100 emails
I limited it to reading 5 emails, but if I limit this number to more or less, the same problem will occur as reading more than 100 emails. When I remove the Reverse method, this problem does not happen.
I found a solution to this email throttling problem. Before using the Reverse method, I used the Take method and entered the number of emails I want to extract. So I was able to extract the emails from oldest to newest.