Code:
<script language="javascript" type="text/javascript" src="include/tinymce/jscripts/tiny_mce/tiny_mce.js"></script>
<script language="javascript" type="text/javascript">
tinyMCE.init({
mode : "exact",
elements : "email_body_html",
content_css: "include/tinymce/style.css",
theme : "advanced",
plugins : "paste,contextmenu",
theme_advanced_toolbar_location : "top",
theme_advanced_statusbar_location : "bottom",
theme_advanced_disable : "anchor,image",
theme_advanced_buttons2_add : "removeformat,charmap,separator,cut,copy,paste,pastetext,pasteword",
theme_advanced_buttons3 : ""
});
</script> Read tinymce's documentation for tips on customizing the TinyMCE interface. I think this configuration works pretty well for sending emails, but you may want to add or remove other features as well. If you want to use the tinyMCE compressor, you will need to edit this file.
Bookmarks