Update Docusign Sender Name and set up it to No reply

耗尽温柔 提交于 2019-12-12 04:54:59

问题


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?


回答1:


You can override the reply email address and name. Here is the documentation.

<ns:EnvelopeInformation>
    ...
    <ns:EmailSettings>
        <ns:ReplyEmailAddressOverride>johnqsigner@fakeemail.com</ns:ReplyEmailAddressOverride>
        <ns:ReplyEmailNameOverride>John Q Signer</ns:ReplyEmailNameOverride>
    </ns:EmailSettings>
    ...
 </ns:EnvelopeInformation>


来源:https://stackoverflow.com/questions/28036663/update-docusign-sender-name-and-set-up-it-to-no-reply

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!