A função "Responder à mensagem de email do Outlook" não reconhece em "Mensagem de email" a variável gerada pela opção de Recuperar as mensagens de email gerando erro no fluxo. Como corrigir esse erro?
Problem in english:
So your problem is that "Respond to Outlook message" -action does not give any options for the "Mail message" so the message to respond to even though you have already used "Retrieve email messages from Outlook" -action.
Explanation:
The reason is that "Retrieve email messages from Outlook" -action returns list of email messages.
So its not just one message. And the "Mail message" field is expecting variable that is single email.
There for you need to still create a variable for a single email message for the "Respond to Outlook message" to respond to.
Solution:
So if you want just to respond to the first email then you can create new variable like %FirstEmail% and set it as %RetrievedEmails[0]% so that it takes the first item from the RetrievedEmails -list of emails.
After you have the variable for single email then you can select it in the "Respond to Outlook message"
Or if the %RetrievedEmails% have multiple emails in and you want to respond to them all then use For each -loop and use %CurrentItem% in the "Mail message" field.
2 people found this reply helpful.
Was this reply helpful?YesNo
Under review
Thank you for your reply! To ensure a great experience for everyone, your content is awaiting approval by our Community Managers. Please check back later.