I am sending an Envelope using NodeJS with 1 document to multiple recipients for them to sign the document. I know that using emailBlurb I can have customized email text. Is it possible to have emailBlurb for each recipients instead of envelope. Here is the sample JS code.
"recipients" : [{"email": email1,
"name": name1,
"recipientId" : id1,
"userType": "sometype",
"emailBlurb": "Text specific to this recipient",
"tabs": {
"signHereTabs": [{
"xPosition": "xx",
"yPosition": "yy",
"documentId": "1",
"pageNumber": "1"
}]
}
},
{"email": email2,
"name": name2,
"recipientId" : id2,
"userType": "sometype",
"emailBlurb": "Text specific to 2nd recipient",
"tabs": {
"signHereTabs": [{
"xPosition": "xx",
"yPosition": "yy",
"documentId": "1",
"pageNumber": "1"
}]
}
]}
Yes, you can have a unique message in the email per recipient. You can use the
note
property in your recipient definition JSON. You're allowed a maximum of 1,000 characters on it.For example-
Here's the signer recipient page in the API docs which explains the property more.