How do I send a single mail to repeated emails from a config file?

Hi Folks,
I have a doubt, I have a config file that looks like this
image

I was able to automatically send a mail to each email recipient, but I am getting 3 different mails for the name “Tom”.

Is it possible to automatically send a single email to Tom which has the content of all the three rows ?

Please help me out!

Thank You!

hi @ice_cream

Please try with merge data table activity
or
Watch below video which is exactly same with your scenario, you can use VBA to achieve this functionality.

Note- In video description they have provided VBA code

Thanks,
AM

Hi @ice_cream

Welcome to community !

We can sort this using Linq,

readDt.AsEnumerable.GroupBy(Function(r) r("Name").ToString).Select(Function(g) readDt.Clone.LoadDataRow({g.Key,g.First().Item("Email").ToString,String.Join("\",g.Select(Function(r) r("Content of Mail").ToString))},False)).CopyToDataTable()

Instead of slash we can try with any seperated values like , if you need in new line we can try with environment .line

Refer to the xaml below!

Test_Sequence1.xaml (5.9 KB)

Regards

Thank you for the help!

1 Like

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.