We have the following Table inside Power App formula, with email addresses been hard coded:-
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 i created a SharePoint list which include all the emails:-

so how i can build the same table but populate it from the values inside the SharePoint list?
Thanks