Reputation: 41
I am using embedded signing and it seems it will not detect the browse language.
Upvotes: 0
Views: 181
Reputation: 6818
You need to set supportedLanguage
inside emailNotification
for each signer in the API. Details are available at DS Docs
"signers": [{
"email": "[email protected]",
"clientUserId": "1111",
"emailNotification": {
"supportedLanguage":"de"
}
...
Upvotes: 2