The Zoho Sign delivery sends a resulting document to Zoho Sign for signing.
Note
You need to have Zoho Sign credits available in your Zoho Sign account for this delivery to work. This is also a requirement for this delivery’s Test mode.
On the first step, connect to your Zoho Sign account from the Plumsail account.
Then you’ll see the Zoho Sign delivery settings.
Let’s check these settings in detail.
Fill in email subject and body. You can use tokens from the document template in these fields to personalize them.
Add recipients and assign roles to them:
Let’s review the advanced settings now.
Expand Advanced to customize more settings:
Here you can switch on Sequential signing, then just drag and drop recipients to define an order in which they should sign the document.
Also, you can set the expiration period, whether to send reminders, and activate Test mode.
When you activate Test mode, you don’t spend Zoho Sign credits. However, you need to have Zoho Sign credits available in your account. Otherwise, Test mode will not work.
Note
You’ll need to purchase one of the Zoho Sign API plans to be able to use all available features of the delivery.
You may want to set recipients dynamically for each document. In this case, you can use tokens in the Email field. Data passed to the process will define who will receive the document.
The field can contain more than one email address. Separate those email addresses with commas or semicolons:
{
"email": "Derek Clark <d.clark@contoso.com>; Jessica Adams <j.adams@contoso.com>"
}
Mind that if you put the list of recipients into a single field, the information you typed in the Name field will be skipped.
You can specify recipient names in the list by placing names before the email address.
Or you can omit that, and the email address will be displayed as the recipient name.
In case Sequential signing is enabled, the order in which recipients receive the document will be the same as in the list.
Zoho Sign delivery supports the Signature tag. This tag is needed to indicate signature locations. Let’s see how it works.
Add the {{Signature}:keep-token}
tag to your template, and this will define the location of the signature for the first recipient/signer.
To specify signature locations for other signers, use the {{Signature:Recipient2}:keep-token}
tag where the number 2 means the number of the recipient/signer.
Note
It’s not possible to use spaces in the recipient name, i.e. this is an incorrect tag: {{Signature:FName LName}:keep-token}
As you noticed, we use the Signature tag with the keep-token formatter. The formatter lets the Plumsail Documents templating engine know that this tag is for another system (Zoho Sign in this case), and the templating engine will ignore it.
This is how the tag looks in the DOCX template.
This is the signature field in the Zoho Sign interface.
We recommend setting the font color of the Signature tag to white in the template to hide it from viewers.
You can insert values from your data using tokens.
Their list is available by clicking { }
.
Let us assume your data has property address.
In this case, you can include it using token {{address}}
.
The tokens work in the same way as in document templates including value formatters.
Additionally, you can use predefined tokens:
{{@date}}
- full current date with time,
{{@number}}
- the current document number.
Note