How Do Tags and HTML Work Together?
Tags are embedded directly in your HTML template code. When signatures are processed, SigStudio replaces each tag with the real data.
Example
<td style="font-weight:bold">{{name}}</td>
<td>{{role}} | {{company}}</td>
<td><a href="mailto:{{email}}">{{email}}</a></td>Image Tags
Image tags work inside src attributes:
<img src="{{photo}}" width="80" alt="{{name}}" />
<img src="{{logo}}" width="200" alt="{{company}}" />Link Tags
Use tags in href attributes for dynamic links:
<a href="{{website}}">Visit our website</a>
<a href="{{linkedin}}">LinkedIn</a>