Is there any possibility to include image into the html like in MHT file (or in like image included in email) not just like link to the message stored somewhere in the internet?
First, base64 encoded images are not shown in all browsers. Second, I think for this you have to write your own plugin. Make a dialog with browse server button to select an image from filemanager. After selection you have encode the image source, in PHP there is a function called base64_encode(). If the source is encoded you have to set it from the dialog to the editor source.
Re: Include image like MHT
Second, I think for this you have to write your own plugin. Make a dialog with browse server button to select an image from filemanager. After selection you have encode the image source, in PHP there is a function called base64_encode(). If the source is encoded you have to set it from the dialog to the editor source.