We have the following Collection which contain a Type =Admin and Table of Email addresses inside Power App formula, with email addresses been hard coded, as follow:-
ClearCollect(
varUserForContracts,
{
Type: "Admin",
Emails: Table(
{UEmail: "app.admin@.org"},
{UEmail: "*****.org"},
{UEmail: ".org"},
{UEmail: "*****.org"},
{UEmail: "app.admin@.org"},
{UEmail: "*****.org"},
{UEmail: ".org"},
{UEmail: "*****.org"},
)
}
);
now instead of hard-coding the email addresses, i created a SharePoint list which include all the above emails:-

so how i can build the same Collection (with Type, email Table) but to populate the table values from the values inside the SharePoint list?
Thanks