Hello,
When applying an automated feed, I get the following error:
Unable to process template language expressions for action 'Condition' at line '0' and column '0': 'The template language function 'equals' expects two parameters: the values to test for deep equality. The function was invoked with '1' parameter(s). Please see https://aka.ms/logicexpressions#equals for usage details.'.
The flow is as follows:
When receiving an email in a shared mailbox, if the subject contains Automatic Reply and if the outbox is xxx@contoso.com (for example) then there is no automatic response sent .
To set up the flow I created a condition with expression which, if the value is true cancels the process and if the value is not true then sends an automatic email.
I specify that if I replace equals by contains I have the same error.
@Anonymous (contains(toUpper(triggerBody()?['Subject']), 'AUTOMATIC REPLY', and (equals(triggerBody()?['From']), '1234@contoso.com')))
Any idea about this error?
Thanks in advance