eConnect Email Help Center

Search the Help Center
You are here: Help Center Home > Images
I uploaded my HTML email, but the images are not appearing.
The most common reason for this issue is that you did not absolutely link your images to your file server.

Whoever created your email for you (the final HTML) is likely hosting the images either on your servers or theirs. Those images need to have an absolute URL back to the hosing server, so they will appear in everyone's inbox. If you upload images within the application, this is already done for you.

Example of RELATIVE image link: (relative to the server it is hosted on)

../images/mylogo.gif

Example of ABSOLUTE image link: (meaning where ever the HTML file is, it will find the image because it is completely linked back to the server hosting it)

http://www.yoursite.com/images/logo.gif

Speak to your webmaster or HTML developer as they will need to code your images with absolute paths to the server they are hosted in. Once complete, update your HTML file and you will see all of your images appear.

Continue