Description
I have been using docusign-esign-java SDK 2.9.0 for the past 2 years for sending my customer's Envelope, and In the envelope, I was using note along with the Approve Tab. Till now I was able to add HTML tags in note and it was working perfectly. But recently due to some new requirements, I upgraded my SDK version to 3.X. And since then Html tags are not working in the notes and are displayed as normal text. Attached is the screenshot for both versions note.
Java Code for the Notes
Note note = new Note();
note.setDocumentId(documentId);
note.setRecipientId(recipientId);
note.setTabLabel(userType + "_" + recipientId + "_approvenote");
note.setPageNumber(pdfFormApproveButton.getPageNumber());
note.setXPosition(String.valueOf(Math.max((Integer.parseInt(pdfFormApproveButton.getxPosition()) - 250), 50)));
note.setYPosition(String.valueOf(Integer.parseInt(pdfFormApproveButton.getyPosition()) - 80));
note.setFont("Helvetica");
note.setFontSize("Size14");
note.setBold("true");
note.setHeight("70");
note.setWidth("500");
note.setValue("Clicking the Approve button will send the offer to the seller(s) for eSignatures. If you would like to edit the contract or make a counter-offer, then Click Here");