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

问题描述

我仍在阅读docusign电子邮件资源文件。.想从已经知道答案的专家那里获取我的情况的输入:

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

到目前为止,我的理解是: 我看到可以自定义以不同语言发送的电子邮件了 挑战: 如何为每个参与者发送不同的电子邮件主题/邮件

解决方法

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 = "[email protected]",Name = "Inbar Gazit",RecipientId = "1",RoutingOrder = "1",EmailNotification = new RecipientEmailNotification { 
        EmailSubject = "Custom email subject for signer 1",EmailBody = "Custom email body for signer 1" }
};