Using "Retrieve email messages from Outlook", I could not extract "From contains" or "To contains", even though I can extaract Subject contains or Body contains from the Outlook e-mail.
referred to
Outlook - Power Automate | Microsoft Docs
Solved! Go to Solution.
For some stupid reason, it is not .From.
I think it’s .’From’ or something like that. I asked the same question about 3-6 months ago, so you should be able to find it.
I have already read this one
But it was about Power Automate topic.
My concern is about PAD.
For example, I can use RetrivedEmail[0].cc or RetrivedEmail[0].subject,
but I can not use RetrivedEmail[0].To or RetrivedEmail[0].From in PAD script after extracting outlook E-mail.
I know this error, classic bug.
%RetrivedEmail[0]['To']%
%RetrivedEmail[0]['From']%
For some stupid reason, it is not .From.
I think it’s .’From’ or something like that. I asked the same question about 3-6 months ago, so you should be able to find it.
I have already read this one
But it was about Power Automate topic.
My concern is about PAD.
For example, I can use RetrivedEmail[0].cc or RetrivedEmail[0].subject,
but I can not use RetrivedEmail[0].To or RetrivedEmail[0].From in PAD script after extracting outlook E-mail.
Thanks.
It may be "reserved keywords" such as repeat, wait, call or times.
%CurrentItem['From']%
Henrik_M, yoko2020,MichaelAnnis,
I have been able to extract the items using your solutions.
Thanks!