5 answers

HI Mathew,Please create a button with a controller for logic to add attachments. Attachment attach = new Attachment(); attach.Body = pdfBlob; attach.Name = 'Contract.pdf'; attach.IsPrivate = false; attach.ParentId = objectname.Id;Asssign you pdfblob. where you can add your contract attachment in the object where you have implemeted your docusign.After attaching it will be added to you object related list.After clicking send with docusign button you will get the attchments automatically.