Goal
Add and configure images in an HTML email.
Procedure
Add an Image with HTML Code
Create or edit an email and go to Step 2. Content in the message creation wizard.
Insert the image using the
<img>tag:<img src="[image URL]">You can add attributes to modify the image’s appearance (e.g.,
height,border).Add an alternative text using the
altattribute:<img src="imagename.gif" alt="Description of the image">This text appears when the image cannot be displayed and is essential for accessibility.
Click Update Draft.
Note: Large images (over 500 KB) may slow down delivery and increase costs.
Add an Image with the Graphical Editor
Create or edit an email and go to Step 2. Content in the message creation wizard.
Click HTML Editor.
Click the Insert/edit image icon.
In the Insert/edit image window:
Enter the image URL under Source, or click Browse files to upload from the Mapp Engage content store.
Add the alternative description and, optionally, height and width.
.png)
Click Save to save changes.
Note
If an image is not yet available in the Content Store, the system prompts you to upload it before continuing.
Configure Image Handling (Optional)
When creating an email, you can define how images are handled during sendout. The selected method affects message size, rendering behavior, and offline availability.
Image Handling Methods
Option | Description |
|---|---|
Images Links are Unchanged | Image URLs remain exactly as defined. |
Images are Inlined (Offline HTML) | Images are embedded directly into the email. This increases message size but allows offline viewing. |
Images are Hosted in Mapp Engage (Online HTML) | Images are stored on Mapp servers and loaded when the email is opened. |
Exclude Individual Images from Hosting or Inlining
By default, the selected image handling method applies to all images in your email. If needed, you can exclude specific images from being hosted or inlined.
To prevent a specific image from being processed, add the following attribute to the <img> tag:
ecm:process="false"Example:
<img src="http://www.website.com/image.gif" ecm:process="false"/>Images with this attribute remain unchanged and are loaded from the original source.
Best Practices
Keep image file sizes as small as possible.
Use hosted images for most campaigns.
Use inline images only when offline visibility is required.