How to send HTML emails with images that load from web pages? Ideally with Thunderbird

emailhtmlhtml-mailthunderbird

I have this HTML email that I made with images pointing to my web page. When I insert the HTML code(Thunderbird: Insert->HTML…) or when I paste it directly into the HTML editor (Thunderbird Stationery add-on) they get attached and embeded in the email itself.

The HTML I'm inserting is

<img align="left" alt="" src="http://www.domainName.com/email/12_2013/images/lokosimpleg.jpg" width="564">

Thunderbird is set to send in Auto mode

How do I send the email so the inline images don't get attached and load from the web page instead?

Ideally OS independently.

Best Answer

You need to add this code

moz-do-not-send="true"

So, your HTML will look like:

<img src="http://www.domainName.com/myImage.jpg" moz-do-not-send="true">

Source

Related Question