Get IMAP Mail Messages backwards fetching

Regarding “Get IMAP Mail Messages” how can I store the mails backwards?

Hi @hussein_khaled

new_MailList = old_MailList.OrderBy(Function(x) x.Headers(“date”)).ToList

Note:

  1. old_MailList is the default list that you get from the receive mail activities
    2. New_MailList is the new list with mails ordered in LIFO

Regards

1 Like