Skip to content
On this page

Signature Block Data for HTML Documents

When placing a signature or an initial into a document signature block, you also have the option of placing additional signature block data along with it. There are different options based on what type of document you are using, however. Please see the options for Additional Signature Block Data for PDF documents. For HTML documents, these data can consist of one or more of the following:

  • Printed Name (required for all signatures)
  • Email Address
  • Title
  • Organization
  • Date/Time
csharp
task = new TaskInsertModel()
       {
           SignatureBlock = new SignatureBlockModel()
           {
               Signature = new SignatureModel()
               {
                   IsBold = true,
                   IsItalic = true
               },
               AdditionalHtmlDataPlacements = new SignatureBlockHtmlDataPlacementModel()
               {
                   DisplayEmailAddress = true,
                   DisplayOrganization = true,
                   DisplayTitle = true
               }
           }
       }

The code snippet above should give you an output of something similar to what you see in the image below. HTML Signature Block