Hi guys,
I am trying displayed data from variable (or if possible every single item(row) from for each loop - under HTML body (during sending an email)
So before sending en email, i am getting data from collection (or from file - i have tried different options)
Then i am trying pass this variable to HMTL body. And it works. but… i am getting only one item from collection(probably last one)
Collection contains few items. SO when i am doing “For Each” loop and i am getting every single item from collection (Every item should be displayed under new line)
Lets say my colection contains 3 items: (List of strings)
Name1, SureName1, DateFrom1, DateTo1, DocumentType1
Name2, SureName2, DateFrom2, DateTo2, DocumentType2
Name3, SureName3, DateFrom3, DateTo3, DocumentType3
So now under HTML body i want to displayed all items in new line
And now instead of “daDuplicatedValue” variable (which is displaying only one item) How to display all items?
“”+
“”+
“”+
“”+
“”+
“”+
“”+
“”+
“”+
“”+
“
Surename | Name | Date from | Date to | Document Type |
---|---|---|---|---|
”+txtDuplicatedValueOutput+“ |
Hope i was clear.
Cheers