Skip to main content

Hi, I would like to set Email Default language to all recipient. I am aware of the option “Custom email and language for each recipient” on the settings, but that is not what I am looking for.

I do not want to enable it because I need to dynamically set the Email subject and text with the Salesforce Apex Toolkit. If I enable this option, I cannot set the subject and text programmtically.

 

I want to set the default language to German (Currently in English).

 

 

How do I achieve this?

 

Hello ​@whaliim 

 

Welcome to the Docusign Community.

 

I’m not sure if my suggestion will solve your problem, but in the bottom right corner of the page you can select the language to be used in the interface as you see in the figure. Also, each user under My preferences can set the default language in the Regional Settings option.

I hope that helps.

 

Best,

Alexandre


Hello ​@whaliim,

 

You can set the default language of an envelope at the APEX or API level, here is a JSON and APEX samples:
{
  "emailSubject": "Test Document",
  "emailBlurb": "Please sign the attached document.",
  "status": "sent",
  "locale": "de",
  ...
}

APEX:
EnvelopeDefinition envDef = new EnvelopeDefinition();
envDef.locale = 'de';

 

Thanks,