具有单个文档的单个信封 - 具有自定义 emailBlurb 的多个收件人

Single Envelope with Single Document - Multiple Recipients with custom emailBlurb

我正在使用 NodeJS 将包含 1 个文档的信封发送给多个收件人,让他们在文档上签名。我知道使用 emailBlurb 我可以自定义电子邮件文本。是否可以为每个收件人提供 emailBlurb 而不是信封。这是示例 JS 代码。

"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"                                         
                 }]
               }
             ]}

是的,您可以在每个收件人的电子邮件中包含一条唯一的消息。您可以在收件人定义 JSON 中使用 note 属性。您最多可以使用 1,000 个字符。

例如-

"recipients" : [{
    "email": "jon.doe@test.com",
    "name": "Jon Doe",
    "recipientId" : "1234",
    "note" : "This note will be only be seen by Jon Doe",
    ...

API 文档中的 signer recipient page 对 属性 进行了更多解释。