how to send mails to multiple user using uipath. Some of user are in cc
Try to fetch Email address from Excel sheet .
There are hundreds of user .
If possible , send to all user at once
Please help
Thanks
how to send mails to multiple user using uipath. Some of user are in cc
Try to fetch Email address from Excel sheet .
There are hundreds of user .
If possible , send to all user at once
Please help
Thanks
@anil3
Just use read column activity and store output in dtemailcol (as ienumrable varibale)
Use below expression in your cc
String.join(dtemailcol,β;β)
hi ,
While using βString.join(dtemailcol,β;β)β encounter an error - doesnot allow conversion of ienumrable into string .
thanks in advance
@anil3
Try this
String.join(dtemailcol.toarray,β;β)