Images in HTML specified as absolute URLs
We use Winward to generate HTML content for marketing emails. These mailers often have images included along with the text. However, some email clients block images in HTML that are embedded inline using base64 encoding. An alternative solution is to specify the source of the image as an absolute URL.
For example, the following inline embedded image:
<img src="data:image/jpg;base64, iVBORedghAAAfrdsdge=">
should be replaced with:
<img src="https://www.myserver.com/car.jpg">.
It would be great if Winward could support adding images specified by absolute URLs into templates.

This enhancement is available in the 21.0.0 version of Windward Core.