# Adding a signature with a company logo to emails

Email This Issue email templates can render corporate signatures with company logos, text and name of the current user. Add a similar code fragment to your template and have a dynamic email signature with company logo:

```
<p>Best Regards, <br />
$!remoteUser.displayName
</p>
<p>
<img width="100px" data-attach="false" src="data:image/png;base64,iVBORw0..."></p>
<p>META-INF - Passionate Atlassian Experts since 2007<br />
Tel.: +36 30 515 4464, Web: http://www.meta-inf.hu, Skype: tibor.hegyi
</p>
<p>
<ul style="color:blue;">
<li>We sell Atlassian licences globally - request a quote to try us</li>
<li>We never leave you alone - training, support and consultancy is at hand</li>
<li>We fulfill your needs - customized solutions seasoned with proficiency</li>
<li>We make your work highly efficient - through our popular free and commercial add-ons</li>
</ul>
</p>
```

This results in the email signature as shown below:

![](/files/xVEhIQiTqDVVSUmdktca)

{% hint style="info" %}
**Note**: The `<img width="100px" data-attach="false" src="data:image/png;base64,iVBORw0...">` in the template is the base64 encoded company logo image. You can use online Base64 image encoders to generate base64 string from images.
{% endhint %}

{% hint style="warning" %}
**Important**: The attribute `data-attach="false"` in the image tag is necessary to prevent the image from being attached to the issue. This may be relevant if you send out many emails using the template, and do not want the same image being attached multiple times to the issue. <mark style="color:green;">SINCE 8.0.5</mark>
{% endhint %}


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.meta-inf.hu/email-this-issue/email-this-issue-for-jira-server-data-center/documentation/outgoing-emails/email-templates/adding-a-signature-with-a-company-logo-to-emails.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
