A powerful email and collaboration platform developed by Microsoft, designed to support enterprise-level communication and productivity. Miscellaneous topics that do not fit into specific categories.
Hi Besart Sylmetaj,
Thank you for posting your question on the Microsoft Q&A forum.
Based on your description, it appears you have attempted to include an image in your shared mailbox signature using HTML, but the image is not rendering as expected even after trying multiple approaches.
As the Q&A answer correctly noted, one of the most common causes of this issue is that the image is not hosted on a publicly accessible URL. When configuring a signature via the Exchange Admin Center, images referenced via an <img src="..."> tag must point to a publicly reachable HTTPS location.
That said, I would like to check: have you tried embedding the image directly using Base64 encoding? This approach embeds the image data inline within the HTML itself, which means the image does not need to be hosted externally.
Here is the general process:
- Convert your image to a Base64 string using a tool such as Base64 Image Encoder
Note: This information is provided as a convenience to you. These sites are not controlled by Microsoft, and Microsoft cannot make any representations regarding the quality, safety, or suitability of any software or information found there. Please ensure that you fully understand the risks before using any suggestions from the above link. - Insert the resulting string into your HTML using the following format:
<img src="data:image/png;base64,YOUR_BASE64_STRING_HERE" alt="Company Logo" width="200">
Important note: If you are applying this signature via a mail flow rule (transport rule) in EAC, please be aware that the disclaimer field has a maximum limit of 5,000 characters, including all HTML markup. Base64 strings for images can be quite large, so the image may need to be small (e.g., a compact logo) to stay within this limit.
If you are trying to use a transport rule to add the signature, you may also find this article helpful: https://learn.microsoft.com/en-us/exchange/policy-and-compliance/mail-flow-rules/signatures
I hope this helps.
If the answer is helpful, please click "Accept Answer" and kindly upvote it. If you have extra questions about this answer, please click "Comment".
Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.