image link in html (< = &lt;)

hello

i want to send a mail
the body of the mail is a html_area

now, my problem: i want to add an image, located on the internet so i use

but when i look at the field in plain tekst i get

ok, i know this is the translation of the symbols
< = <
" = "

= >

i can make it work if i use the same field, but in tekst_area where i paste the link

but is there a way to do this without pasting it in the tekst_area (can i use other symbols???)

help

What is the full content of the dataprovider attached to the HTML Area?

If you do not have a full html document in there, the HTML Area will translate all the & and <.

A full HTML document is:

something here

Paul

when i look at the tekst_area i get

can i translate
< into <

aha!!!

could it be

var data = tekst

data = utils.stringReplace(data, '<', '<')
data = utils.stringReplace(data, '"', '"')
data = utils.stringReplace(data, '>', '>')

tekst = data

this i can use

thank u

Something goes wrong when you add the sourcecode of the image, because by default, the special characters are not escaped.

Must be something int he sequence you do to insert the image code, I think