jigyasu joshi
jigyasu joshi

Reputation: 1

Visualforce page rendered as pdf can be sent for Esign using Docusign

Can we send Visualforce page rendered as pdf for Esignature using Docusign.

Cannot use template function provided by DocuSign as a number of components are dynamic which can't be done using Docusign template.

Any ideas?

Upvotes: 0

Views: 187

Answers (1)

Larry K
Larry K

Reputation: 49114

You want a VisualForce page turned into a PDF and then sent to DocuSign for signature?

The first part (turning a VisualForce page into a PDF) is the hard part. You need to accomplish that.

The usual technique is to have your application create a dynamic document on the fly, then send it to DocuSign. You can create PDFs dynamically using a software library.

But it is often easier to create an HTML document. If you send an HTML document to DocuSign, then it must use inline CSS styling (not an external style sheet) and must also include inline graphics via the data: URL type

Upvotes: 0

Related Questions