Note that there are some explanatory texts on larger screens.

plurals
  1. POi can't see images in the emails when i insert images in the ckeditor and uploads from fckeditor
    text
    copied!<p>i need help to sending emails via ckeditor and also facing following problems?</p> <p>1) problem is that i can't see image when i <code>echo $message =$editor1;</code> and how can i see images in the email when i insert images in the ckedit?</p> <p>ckeditor uploading image on the folder which is <code>UserFilesAbsolutePath</code></p> <p>2) how do i send multiple receipt emails in the <code>textarea name='email'</code>??</p> <p><strong>For example multiple receipt emails With Commas</strong></p> <pre><code>demo@yahoo.com,test@yahoo.com,123@gmail.com &amp; Sending TO All Select //same like gmail,yahoo &amp; hotmail </code></pre> <p><strong>Process Page</strong> </p> <p><strong>Here My Sending Emails Page</strong> </p> <pre><code>if(isset($_POST['sendemail'])){ $email=$_POST['email']; $email=$_POST['email']; $subject=$_POST['subject']; $editor1=$_POST['editor1']; $your_email = 'test@yahoo.com'; //CHANGE TO YOUR SETTINGS $domain = $_SERVER["HTTP_HOST"]; //YOUR DOMAIN AND EXTENSION $to = $email; $subject = $subject; echo $message =$editor1; $headers .= 'MIME-Version: 1.0' . "\r\n"; $headers .= 'Content-type: text/html; charset=iso-8859-1' . "\r\n"; $headers .= "From: Testing Email&lt;$your_email&gt;\r\n" . "X-Mailer: PHP/" . phpversion(); mail($to, $subject, $message, $headers); //if(!empty($message)){ //header('Location:index.php'); //} } </code></pre> <p><strong>Index Page</strong></p> <pre><code>&lt;form action="process.php" method="post"&gt; To: &lt;textarea class="input_field" name="email" id="email"&gt;&lt;/textarea&gt; Subject: &lt;input type="text" name="subject" id="subject" /&gt; Message: &lt;textarea class="ckeditor" name="editor1" id="editor1" &gt;&lt;/textarea&gt; &lt;script type="text/javascript"&gt; var editor = CKEDITOR.replace( 'editor1', { tabSpaces:10, filebrowserBrowseUrl :'ckeditor/filemanager/browser/default/browser.html?Connector=http://localhost/test/phpmultipleemails/ckeditor/filemanager/connectors/php/connector.php', filebrowserImageBrowseUrl : 'ckeditor/filemanager/browser/default/browser.html?Type=Image&amp;Connector=http://localhost/test/phpmultipleemails/ckeditor/filemanager/connectors/php/connector.php', filebrowserFlashBrowseUrl :'ckeditor/filemanager/browser/default/browser.html?Type=Flash&amp;Connector=http://localhost/test/phpmultipleemails/ckeditor/filemanager/connectors/php/connector.php', filebrowserUploadUrl :'http://localhost/test/phpmultipleemails/ckeditor/filemanager/connectors/php/upload.php?Type=File', filebrowserImageUploadUrl : 'http://localhost/test/phpmultipleemails/ckeditor/filemanager/connectors/php/upload.php?Type=Image', filebrowserFlashUploadUrl : 'http://localhost/test/phpmultipleemails/ckeditor/filemanager/connectors/php/upload.php?Type=Flash', filebrowserWindowWidth : '730', filebrowserWindowHeight : '500' }); CKEDITOR.instances["post-content"].on("instanceReady", InstanceReadyEvent); function InstanceReadyEvent() { this.document.on("keyup", function () { $('#editform').trigger('change'); }); } &lt;/script&gt; </code></pre> <p><strong>Here My UserFilesPath For Ckeditor Filemanager</strong></p> <pre><code>$Config['UserFilesPath'] = 'http://localhost/test/phpmultipleemails/uploads/'; </code></pre> <p><strong>Here My UserFilesAbsolutePath For Ckeditor Filemanager</strong></p> <pre><code>$Config['UserFilesAbsolutePath'] = 'D:\\xampp\\htdocs\\test\\phpmultipleemails\\uploads\\; </code></pre>
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload