Hi @Anonymous,
Have your resolved your problem?
Do you want to send email to the whole column of email address?
Just assume that the Email column is a Person type, please set the send button OnSelect property as below:
ForAll(list.Emai,Office365Outlook.SendEmailV2(Email,"SubjectString","Body"))
Or you could save the Email column within a collection like:
ClearCollect(colperson,ScoreList.Employee)
Then send email as below:
ForAll(colperson,Office365Outlook.SendEmailV2(Employee.Email,"SubjectString","Body"))
Employee is the Person column in my list.