Sign in
    Shared Email Templates

    Add an image in the HTML code of your shared email template

    In this article

    Here’s how to add an image directly to your template’s HTML code:

    1. When creating or editing a template, select the The View HTML button View HTML button on the template editor toolbar.

    2. Enter the <img> tag along with the URL and the size of an image. For example, if the image, say, logo.png, is at https://cdn.company.com/ and you want it to be 150px wide and 80px high, the HTML code will be as follows:

      <img src="https://cdn.company.com/logo.png" width="150" height="80">

      If you want to keep the original dimensions of the image, you can leave out the width and the height, and the HTML code will look like this:

      <img src="https://cdn.company.com/logo.png">

      You can also enter the desired size of the image in percentage:

      <img src="https://cdn.company.com/logo.png" width="80%" height="80%">

    3. When you’re ready, select OK.

      The View HTML dialog