Hi, I am getting this error now on my OnSelect of a submit button, which literally popped out of nowhere. I didn't make any modifications to anything.
Office365.SendEmailV2 failed: { "status:" 400, "message": No input parameters provided. Please provide required input parameters 'To', 'Subject' and 'Body'.\r\nclientRequestId:8d74306b-de41-44aa-ac0f-a6b93be9760a", "error": {"message": No input parameters provided. Please provide required input parameters 'To', 'Subject' and 'Body'."}, "source": 01.p.azurewebsites.net"}
I couldn't find a solution anywhere. The error in the OnSelect is in this function:
Office365.SendEmailV2(
hidden_queued_managers,
"A New Problem Has Been Submitted to " & Dropdown_Process.Selected.Process & " Team. Please Assign a Problem Lead.",
"A new problem has been submitted to the " & "<b>" & Dropdown_Process.Selected.Process & "</b>" & " team in the " & "<b>" & Dropdown_OwnerGroup.Selected.Result & "</b>" & " Group. Please click the link below to navigate to the Admin Tool to assign a Lead to begin investigating this Sherlock." & "<br>" & "<br>" & "
You can process the problem and assign a Lead by clicking the following link:" & "<br>" & "<br>" & "insert link here",
{
Importance: "High",
Cc: hidden_queued_process_leads,
IsHtml: true
}
)
This was working completely fine until this week. I looked at the label I'm using for my To in the email:
hidden_queued_managers =
Match(Concat(Filter('Cascading Dropdown (Do Not Remove)',Dropdown_Process.SelectedText.Process in Process And Dropdown_OwnerGroup.SelectedText.Value in 'Owner Group'),Manager.Email&", "),"^(?<trim>.*), $").trim
I noticed it's telling me:
Dropdown_OwnerGroup = PowerApps encountered an internal error trying to evaluate this expression. | Data type: Control
Any help would be very, very appreciated!