Following Task is planned to realize using Flow.
Frequently list of company user emails gets exported from a system as CSV file. We cannot maintain a distribution list of the constantly changing users but have easy export to CSV.
There is a limit to how many recipients a mail can have from Exchange Portal. Due to security reasons we don't want to increase that limit.
Flow watches for new entries of a Sharepoint list. Sends a Mail with Subject, Text from the List with the csv Attachment as recipients. If the CSV has more than 500 entries it splits the List in first 500, second 500 buckets and sends 2 or 3 mails after another from a shared mailbox.
My current issue is that Get Attachments always expects more than one attachment, resulting in a for each, we do not need.
The "Create CSV Table" block is expecting an array, not an actual CSV.
Another solution would be to store a Recipientslist.csv in a DocLib. How to format the recipients list from csv so we can use it with send an email v2 from a shared mailbox?