问题
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