I have a PowerApp Form with a dropdown choice for 'Region.' There are about 11 possible outcomes for the Region. Depending on the selected region, I want to send an email to that specific region that is stored in a SharePoint list.
So far, I have a collection:
ClearCollect(
colRegions,
Filter(
RegionEmails,
Title = DataCardValue41.Selected.Value
)
);
However, I'm not sure I'm doing this correctly. I have two columns in the SharePoint list. The first column, "Title" contains the Region Names that can be selected from the dropdown in the form. The second column is "RegionEmail" which contains the associated email address for the selected region.

How do I set this up in my app so that if someone chooses "Corporate New York", it finds that region in the Title column of my SharePoint list and then sends an email to the correct email address in the "RegionEmail" column?
Thanks in advance for all your help on this!