Hello everyone,
has anyone encountered this before?
I have an excel file with some rows in it. I need to send an email for each row, sounds like a simple thing, actually.
I am using For Each row activity for this and this works for the TO and Subject fields (Send SMTP activity)
Since I have a customized text for the body (html) and parameterizing some entries, I decided to use String.Format(str_EmailBody, row(“display name”), row(“username”), row(“request id”))
somehow using this does not work for the body, it doesn’t move to the next row and keep on using the same information in the 1st row.
Any solution anyone can share is highly appreciated!