How to Add Images Using Tags

Image tags let you dynamically insert uploaded images into your signature templates.

Basic Usage

<img src="{{logo}}" width="200" alt="Company Logo" style="display:block;" />

Profile Photos

<img src="{{photo}}" width="80" height="80"
  style="border-radius:50%; display:block;"
  alt="{{name}}" />

Conditional Images

Show images only when they're uploaded:

{{#if photo}}
  <img src="{{photo}}" width="80" />
{{/if}}

Tips

  • Always set explicit width attributes
  • Use display:block to prevent gaps in Outlook
  • Add meaningful alt text for accessibility