I am using ckEditor (http://docs.cksource.com/CKEditor_3.x). my goal is to send text entered as an email message.
I get the contents of editr as suggested in the docs:
var message = CKEDITOR.instances.editor1.getData ();
then send a message to the server side web method and it will send ok.
The problem is this: the images are added as the img tag and get the address of the local directory, so it cannot be viewed on the recipient side.
How can I add images to an email?
early!
source
share