Copy link to clipboard
Copied
Hello,
Is it possible to disable 'Please Sign' email notification that the signer gets when agreement is created? But still send an email when agreement has been signed.
In my use case I want to show the user link that I get from 'GET /agreements/{agreementId}/signingUrl' and not send an email at the same time.
Copy link to clipboard
Copied
In the v6 'POST /agreements' we have an option called emailOption in the JSON.
Add the following to the JSON while POST:
"emailOption":{
"sendOptions": {
"initEmails": "NONE"
}
}
Copy link to clipboard
Copied
Hello,
This did not stop AdobeSign from sending emails - one when the agreement was ready for signing and once when the agreement was signed.
How can I stop all emails from AdobeSign to the client when using API