Reputation: 155
We are trying to get DocuSign to send out emails for signing documents in French. We are aware of one way which is by changing the receiver's User Preferences. What I would like to know is, is it possible to send out emails in French by using the DocuSign APIs.i.e. by adding a setting in the DocuSign Envelpoe? Any information regarding this will be extremely helpful.
Thanks and Regards, Nikhil
Upvotes: 0
Views: 1109
Reputation: 9356
There's a few ways to alter language settings for your signers:
supportedLanguage
field on the emailNotification
property that you set in your JSON or XML request body.For the supportedLanguage
property your JSON would look something like:
"emailNotification": {
"emailSubject": "Custom email subject",
"emailBody": "Custom email body",
"supportedLanguage": "en"
},
This page of the documentation lists the possible enumeration values for the various languages that are supported by DocuSign.
For #2, see this page for info on Branding and Resource Files.
Note: You might have to enable "Allow sender to set email language for recipients" option through your Preferences -> Features page in the Classic DocuSign Console. If you don't see that option contact your account manager or support to have it enabled.
Upvotes: 2