I receive a string array for the WF of the email
I want to display every word that exists in the array in the body part of the email
Is there a way to do it?
Hi @mironb
Use below expression in you mail Body.
String.Join(β,β,YourArrVar)
Note: Here β,β (Comma) is separator between every item in your array elements.
Hope it will helps you
Cheers!!
Hi @mironb
You can use the below syntax:
String.Join(", ", arrayStrings)
You can use this in the body of Send Outlook Mail Message.
Regards
1 Like
@mironb
Assign
To: emailBody
Value: String.Join(Environment.NewLine, wordArray)
Send Outlook Mail Message (or Send SMTP Mail Message)
To: βrecipient@example.comβ
Subject: βWord Array Elementsβ
Body: emailBody
1 Like
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.