Kenneth,
Thanks! Creating an html filter resolved the issue.
function cleanUpHtml(html) {
var a = 'src="http://www.cutesoft.net/Email_Images/',
b = 'src="http://www.DOMAIN_NAME_REMOVED.com/Email_Images/';
return html.replace(a, b);
}
function CuteEditor_FilterHTML(editor,code) {
return cleanUpHtml(code);
}
function CuteEditor_FilterCode(editor,code) {
return cleanUpHtml(code);
}