I currently have an email sending that takes a row from a datatable and adds that value to the CC property on the email. I would like to also add another singular recipient by just adding their email as a string. Is this possible?
I have have tried a simple concatenation like: Final.Rows(0)(4).ToString + “email” …but that did not work.
Any ideas? Thanks
ppr
(Peter Preuss)
October 12, 2021, 1:11pm
2
was the seperator ; char handled when added the other receipient?
No it wasn’t. How would I do that?
ppr
(Peter Preuss)
October 12, 2021, 1:15pm
4
please show us the initial string / value from Final.Rows(0)(4).ToString
It’s an email. I would prefer not to share that information. We could use “abc@gmail.com ” as the value that comes from the datatable for example.
ppr
(Peter Preuss)
October 12, 2021, 1:25pm
6
in case of outlook
CC string will be: “abc@domain.com ;cde@domain.com ”
so the receipients are seperated by a ;
postwick
(Paul Ostwick)
October 12, 2021, 1:31pm
7
You have to use commas to separate email addresses with the Send SMTP Email activity, for some reason.
ppr
(Peter Preuss)
October 12, 2021, 1:33pm
8
ppr:
in case of outlook
was mentioned and requires this format
other types also handle end / closing last receipient different. We should not mix.
In case of @jpreziuso had used another send email type then he will tell us and we will give the particular format as well
I am using Send Exchange Email which required a “;” as the separator. Thank you for the help
ppr
(Peter Preuss)
October 12, 2021, 1:41pm
10
i guess this one also need ; on end (fter last receipient). Just check it out when if fails