The suppoted variable for the output property field in all Get Mail activities. Multiple Choice

Output property field in all Get Mail activities.

@nevesisabela963,

List<MailMessage> is the datatype it supports.

@nevesisabela963

Mail object is MailMessage and get mail will get multiple mails so List of mailMessage (List<MailMessage>)

Cheers

Hi @nevesisabela963 ,

  1. MailMessage: This represents a single email message, not suitable for the output of “Get Mail” activities, which return multiple messages.
  2. List<String: This would only store string values, not the full email message details.
  3. 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.