使用资源文件为不同的人自定义相同信封、相同语言但不同文本的 Docusign 通知?

Customize Docusign notifications for same envelope, same language but different text for different people using resource files?

我仍在通读 docusign 电子邮件资源文件.. 想从已经知道答案的专家那里获得关于我的方案的意见:

我正在努力实现这一目标: 一个信封包含多个参与者 - 已经完成 我想向不同的参与者发送不同的电子邮件内容(主题、正文)(基于内部 roles/logic)。 每个信封的所有通知都将使用相同的语言 需要对电子邮件内容进行本地化

目前我的理解: 我看到可以自定义要以不同语言发送的电子邮件 挑战: 如何为每个参与者发送不同的电子邮件 subj/body?

https://www.docusign.com/blog/dsdev-blog-series-common-api-tasks-change-email-subject-and-body-for-each-recipient

包含有关如何使用 API 和 SDK 执行此操作的信息。

不确定您喜欢哪种编程语言,这里是 C#:

// create a Signer recipient to sign the document, identified by name and email
// add an EmailNotification object with a custom email subject and email body
Signer signer1 = new Signer {
    Email = "inbar@example.com",
    Name = "Inbar Gazit",
    RecipientId = "1",
    RoutingOrder = "1",
    EmailNotification = new RecipientEmailNotification { 
        EmailSubject = "Custom email subject for signer 1", 
        EmailBody = "Custom email body for signer 1" }
};