How to Display Customised Images

This guide explains how to add personalised images such as staff photos or custom graphics to your email signature in Crossware Email Signature.


Prepare Your Image

Before uploading anything to Crossware, you will need to create your image file.

  • You can use .gif, .png, or .jpg formats.

  • Name the file using this format:
    Firstname_Lastname.extension

Examples:

  • John_Smith.gif

  • Emily_Walker.jpg

  • Sally_Williams.png

image-20251211-232106.png

Upload Your Image to Crossware

  1. Sign in to the Crossware Portal.

  2. Navigate to the Images section.

  3. Click New Folder and enter a name for the folder (for example, Staff Photos).

  4. Select the newly created folder.

  5. Click Upload Image and choose the image or images you created earlier and upload them.

image-20260311-202003.png

Once the upload is complete, the images will appear in the selected folder.


Create a Formula to Select the Correct Image Automatically

Crossware can automatically match each user's name to the correct image by using a formula.

  1. Go to Fields, click Formula.

  2. Select Create new formula field.

  3. Name it something like SignatureImageFormula.

  4. Paste the following code into the formula editor:

C#
string strFirstName = "(!FirstName!)";
string strLastName = "(!LastName!)";

string fileName = strFirstName + "_" + strLastName + ".png";

return fileName;

Note:
If you use .png or .jpg, simply update the file extension in the code to match your image type.

Example using GIF:

C#
string fileName = strFirstName + "_" + strLastName + ".gif";

Example using JPG:

C#
string fileName = strFirstName + "_" + strLastName + ".jpg";
  1. Save the formula field.

image-20260305-210849.png

Create an Image Field for Your Signature

This step adds the personalised image into your signature layout.

  1. Go to Fields, click Image.

  2. Select Create image field.

  3. Configure the settings as follows:

    • Field Name:
      For example, UserPhoto

    • Where the Image is Stored:
      Select Mail Signature Library

    • Image Name:
      Select Compute from another field.
      Under Folder, Select Staff Photos.
      Under Field Name, Select the Formula created (SignatureImageFormula).

    • Exclude from Cache:
      Set to Off

  4. Save the image field.

image-20260305-212708.png

Test That Everything Works

  1. Use the Signature Preview feature in the Crossware portal.

  2. Confirm that the correct image displays for the test user.

image-20260305-214345.png
  1. If the image does not appear, check the following:

    • The filename and extension match your formula

    • The image is uploaded to the correct folder

    • The image format is supported (.gif, .png, or .jpg)

Once everything looks correct, you can place the image field into your signature design.