Problem in SendTo field
In my application I am populating SendTo field value in lotus script, it’s populating correctly, but the problem is if the recipient’s notes id contains one or more organization units(OU) that recipient id is not populating correctly in SendTo field.
My script code like below:
Set docMemo = db.CreateDocument
docMemo.SendTo = recipTo
docMemo.SendTo = "Recipient_1/USA, Recipient_2/CT/USA, Recipient_3/USA”
docMemo.CopyTo = recipCC
Result: (appearing in SendTo field):
"Recipient_1/CT/USA, Recipient_3/USA”
Recipient_2 is missing and the OU value of Recipient_2 is concatenating with Recipient_1”
What could be the problem? Please let me know anyone knows.