“How to send outlook mail for multiple receiptents using one send outlook mail message activity”
But i am getting an error⚠️
Outlook does not recognise one or more names
Do you have any other solutions
Hi @praveenchintu374 ,
It has to be separated by semicolon instead of comma like below:
“abc@mail.com;abs@mail.com”
Alternatively, you can define asset to hold all email ids(separated by semicolon) and just use that asset in outlook activity.
Regards
Sonali
Try to store it as a String variable and pass in OutlooK properties.
Assingn StrVar ="abc@xyz.com,abs.yxz.com…"
Regards
Pravin i am getting an error like outlook doesnot recognize one or more names
Hi! @praveenchintu374,
1.Take one build data table
2.create one column as Mail
3.in text give mail id’s one by one.
PLEASE REFER Below snap:
4.create output variable as DtOut
5.Take one for each row in datatable pass the output variable (DtOut)
now take the send outlook mail message in the To field type CurrentRow(“Mail”).ToString. this activity should inside the For each row in DataTable
Your final workflow should be:
Regards,
NaNi
Set multiple recipients mail IDs in the below format in TO field.
"abc@gmail.com;xyz@gmail.com;def@gmail.com"
Thanks Thiru☺️
Thanks Sonali
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.