Applies to: deHOSTED Control Panel, Hosted Exchange, deHOSTED Exchange

Last Modified thread: 23.03.2015

This topic deals with the creation of global signatures and disclaimers in deHOSTED Control Panel for individual organizations.

To use an Active Directory variable, type %%<name_of_variable>%% (e.g. %%DisplayName%%).

The variables you can use are:
  • DisplayName
  • FirstName
  • Initials
  • LastName
  • Office
  • PhoneNumber
  • OtherPhoneNumber
  • Email
  • Street
  • POBox
  • City
  • State
  • ZipCode
  • Country
  • UserLogonName
  • HomePhoneNumber
  • OtherHomePhoneNumber
  • PagerNumber
  • MobileNumber
  • FaxNumber
  • OtherFaxNumber
  • Notes
  • Title
  • Department
  • Company
  • Manager


Formatting your disclaimer.

You can format your disclaimer as needed. Here’s what can be included in your disclaimer text.

Art der Information Beschreibung
Text You can format your disclaimer as needed. Here’s what can be included in your disclaimer text.
HTML and Inline-CSS You can use HTML and inline CSS styles to format the text. For example, use the <HR> tag to add a line before the disclaimer.

HTML in a disclaimer is ignored if the disclaimer is added to a plain text message.
Add Images Use the <IMG> tag to point to an image available on the internet. For example, <IMG src="http://contoso.com/images/companylogo.gif" alt="Contoso logo">

Keep in mind that Outlook Web App and Outlook block external web content, including images, by default. Users may need to perform a specific action if they want to view the blocked external content. This means that images added by using the IMG tag may not be visible by default. We recommend that you test a disclaimer with IMG tags in the email clients your recipients are likely to use to make sure it displays well.
Add dynamically changing images
If you want to insert pictures dynamically from a URL in the disclaimer, we recommend naming them according to an Active Directory attribute and saving them on the web store.

An example of this is the dynamic loading of user photos.

Store the user photos with the first name Nachnamen.jpg or another file type on a freely available location


In the browser, test the retrieval of the images, e.g. Https://www.fabrikam.com/images/Max_Mustermann.jpg. Copy this image path (URL) to the clipboard.

Open the signature editor in the deHOSTED control panel and switch to the HTML design mode.

Insert the following code and replace the first name "Max" with %% Firstname "in the URL under" src = "and the last name" Mustermann "with %% LastName %%.

<div><img alt="Fabrikam" src="http://fabrikam.com/images/%%FirstName%%_%%LastName%%.png"></div>
Adding BASE64 images embedded in the source code.
In order to send pictures directly with the e-mail and to avoid an additional confirmation from the user to reload pictures, pictures can be integrated directly into the source code as BASE64 coded with an <img> tag. As a BASE64 converter you can use Base64 Image Encoder (base64-image.de).
Add information for personalized signatures If you want everyone to have signatures formatted the same way with the same information, you can add unique information for each employee, such as DisplayName, FirstName, LastName, PhoneNumber, Email, FaxNumber, and Department. This information must be enclosed in two percent signs (%%) on each side of the information. For example, to use DisplayName, you must use %%DisplayName%% in your disclaimer.

When a disclaimer rule is triggered, the corresponding values for that user are inserted. The data comes from the sender's Active Directory user account.


For example, here’s an example of an HTML disclaimer that includes a signature, an IMG tag, and embedded CSS.

<div style="font-size:9pt; font-family: 'Calibri',sans-serif;">
%%displayname%%</br>
%%title%%</br>
%%company%%</br>
%%street%%</br>
%%city%%, %%state%% %%zipcode%%</div>
&nbsp;</br>
<div style="background-color:#D5EAFF; border:1px dotted #003333; padding:.8em; ">
<div><img alt="Fabrikam" src="http://fabrikam.com/images/fabrikamlogo.png"></div>
<span style="font-size:12pt; font-family: 'Cambria','times new roman','garamond',serif; color:#ff0000;">HTML Disclaimer Title</span>
</br>
<p style="font-size:8pt; line-height:10pt; font-family: 'Cambria','times roman',serif;">
This message contains confidential information and is intended only for the individual(s) addressed in the message.
If you are not the named addressee, you should not disseminate, distribute, or copy this e-mail.
If you are not the intended recipient, you are notified that disclosing, distributing, or copying this e-mail is strictly prohibited.
</p>
<span style="padding-top:10px; font-weight:bold; color:#CC0000; font-size:10pt; font-family: 'Calibri',Arial,sans-serif; ">
<a href="http://www.fabrikam.com">Fabrikam, Inc. </a>
</span></br></br>
</div>
Was this answer helpful? 0 Users Found This Useful (615 Votes)