Output property field in all Get Mail activities.
List<MailMessage> is the datatype it supports.
Mail object is MailMessage and get mail will get multiple mails so List of mailMessage (List<MailMessage>)
Cheers
Hi @nevesisabela963 ,
- MailMessage: This represents a single email message, not suitable for the output of “Get Mail” activities, which return multiple messages.
- List<String: This would only store string values, not the full email message details.
- String: This would represent a single text value and is not suitable for handling email messages.
Thus, option 1 List<MailMessage is the correct choice for the output variable type in “Get Mail” activities.
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.
