A minor typo error in handling of multiple recipients will
did cause a loop when the number of recipents was more
than 2.
ASSIGN emailtoTmp = SUBSTRING
(emailto,INDEX(emailtoTmp,",") + 1).
This line should be:
ASSIGN emailtoTmp = SUBSTRING
(emailtoTmp,INDEX(emailtoTmp,",") + 1).
Logged In: NO
I rn into this issue this morning, and applied this fix. It seems
to resolve the issue.
Thanks for the fix!