The forum operates in read-only mode. Please head to StackOverflow for support.
index.cfm ========= <html><head></head> <body> <cfif NOT IsDefined("form.send")> <form action="index.cfm" method="post"> <cfmodule template="/fckeditor/fckeditor.cfm" basePath="/fckeditor/" instanceName="myEditor" value='<p>Your Message</p>' width="100%" height="200" > <input type="submit" name="send" value="send email" /> </form> <cfelse> <cfset mailMessage = Replace(form.myEditor, "/userfiles", "http://www.xeequa.com/userfiles", "all") /> <cfmail from="from@domain.tld" to="to@domain.tld" subject="new entry from homepage" type="text/html"> <h1>New Message:</h1> #mailMessage# </cfmail> <p><b>Your Message has been send</b></p> </cfif> </body>
Wiktor Walc CTO, CKSource - http://cksource.com -- Follow CKEditor on: Twitter | Facebook | Google+
Re: Fully qualified image path for email
index.cfm ========= <html><head></head> <body> <cfif NOT IsDefined("form.send")> <form action="index.cfm" method="post"> <cfmodule template="/fckeditor/fckeditor.cfm" basePath="/fckeditor/" instanceName="myEditor" value='<p>Your Message</p>' width="100%" height="200" > <input type="submit" name="send" value="send email" /> </form> <cfelse> <cfset mailMessage = Replace(form.myEditor, "/userfiles", "http://www.xeequa.com/userfiles", "all") /> <cfmail from="from@domain.tld" to="to@domain.tld" subject="new entry from homepage" type="text/html"> <h1>New Message:</h1> #mailMessage# </cfmail> <p><b>Your Message has been send</b></p> </cfif> </body>Re: Fully qualified image path for email
viewtopic.php?f=6&t=11773
Re: Fully qualified image path for email
Re: Fully qualified image path for email
Re: Fully qualified image path for email
viewtopic.php?f=6&t=11773
Wiktor Walc
CTO, CKSource - http://cksource.com
--
Follow CKEditor on: Twitter | Facebook | Google+