I would like to send ONE email to myself and bcc users if their email box is checked (please see attached). So far I have created a button which sends individual emails but this is becoming a pain (too many emails being sent) so I need to tweak it but can't work out how.
Please could someone advise how I go about this? This is what I have currently:
Clear(Coll1); Clear(colDistinct)
Collect(Coll1,Filter(Gallery1_1.AllItems, Checkbox2_1.Value=true));
Collect(colDistinct, Distinct(Coll1,'Email Address'));
ForAll(
colDistinct,
Office365Outlook.SendEmailV2(
User().Email, “subject”, “email text”,
{ Bcc: ThisRecord.Value }));
Many thanks in advance