问题描述
我使用Salesforce中的Docusign API创建了一个Envelope和EnvelopeFromTemplates。我们在Salesforce中使用了DocuSign用户,并且在Salesforce中具有不同的角色。该程序正在运行,但是我们需要更新电子邮件的名称,并将此电子邮件设置为不答复。这封电子邮件是签名电子邮件。例如:在Salesforce中设置了DocuSign用户A。 Salesforce用户A单击签名按钮,然后将来自Docusign用户A的电子邮件发送给客户端。但是客户会看到Docusign用户A。我们想将电子邮件的名称更改为Salesforce用户A,此电子邮件为无回复。我们该怎么做?
I created a Envelope and EnvelopeFromTemplates using the Docusign API in Salesforce. We used a DocuSign user in Salesforce, and we have different role in Salesforce. The program is working, but we need to update the email's name and set up this email as no-reply. This email is sign email. For example: DocuSign User A is set in Salesforce. Salesforce User A clicks a Sign button, and an email from Docusign User A is sent to the client. But the client will see Docusign User A. We want to change the email's name to Salesforce User A and this email is no reply. How can we do that?
推荐答案
您可以覆盖回复电子邮件地址和名称。 。
You can override the reply email address and name. Here is the documentation.
<ns:EnvelopeInformation>
...
<ns:EmailSettings>
<ns:ReplyEmailAddressOverride>[email protected]</ns:ReplyEmailAddressOverride>
<ns:ReplyEmailNameOverride>John Q Signer</ns:ReplyEmailNameOverride>
</ns:EmailSettings>
...
</ns:EnvelopeInformation>
这篇关于更新Docusign发件人姓名并将其设置为“无回复”的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!