Electronic Signature

July 31, 2018 ยท View on GitHub

back

You can add an electronic signature to the PDF, by using the following specific html TAG:

<cert
    src="/path/to/cert.pem"
    privkey="/path/to/priv.pem"
    name="sender_name"
    location="sender_location"
    reason="sender_reason"
    contactinfo="sender_contact"
>                            
/** html **/
</cert>
AttributeDescriptionExample 1Example 2
srcPath to the Cert/www/certs/my.pem/www/certs/my.crt
privkeyPrivate key of the Cert if needed/www/certs/priv.pemnothing
nameName of the CertMy.org Cert
locationCountry of the CertFrance
reasonPurpose of the CertInvoice validation
contactinfoEMail of organisation's contactcontact@my.org

/** HTML **/ part could be any HTML formatted string, img, etc...

back