How can I add "insert/edit table" to Mass Mailer?

Hello,

Is it possible to add the "insert/edit table" to mass mailer creator?

Sometimes communicating your problem and putting it out there is enough to solve it
Quote · 28 Jun 2012

go to administration/notifies.php at line 194 you will see this

'body' => array('type' => 'textarea','name' => 'body','value' => $sBody,'caption' => $sBodyC,'required' => true,'html' => 1,'checker' => array ('func' => 'length','params' => array(10,32000),'error' => $sErrorC,),                    'db' => array ('pass' => 'XssHtml', ),                    ),

change 'html' => 2,

it will change the tinymce to the full features mode.

Enjoy

so much to do....
Quote · 28 Jun 2012

I already have it set on html #2 and several buttons are missing in TinyMce including the "table" one.

'body' => array(
				'type' => 'textarea',
				'name' => 'body',
				'value' => $sBody,
				'caption' => $sBodyC,
				'required' => true,
				'html' => 2,
				'checker' => array (
					'func' => 'length',
					'params' => array(10,32000),
					'error' => $sErrorC,
				),                    
				'db' => array (
					'pass' => 'XssHtml', 
Sometimes communicating your problem and putting it out there is enough to solve it
Quote · 28 Jun 2012

open file: templates/base/scripts/BxBaseConfig.php

and this: function BxBaseConfig($site) {

and this line: theme_advanced_buttons3_add : "emotions",

change to: theme_advanced_buttons3_add : "table,preview,media,fullscreen,emotions",

Quote · 28 Jun 2012

Awesome!!!!   thank you Okweb, that's really cool!!

Is it also possible to upload an image from the computer without a url link?

 

open file: templates/base/scripts/BxBaseConfig.php

and this: function BxBaseConfig($site) {

and this line: theme_advanced_buttons3_add : "emotions",

change to: theme_advanced_buttons3_add : "table,preview,media,fullscreen,emotions",

 

Sometimes communicating your problem and putting it out there is enough to solve it
Quote · 28 Jun 2012

If you want all the table-control buttons, try using... "tablecontrols" instead of "tables"... for example:

 
theme_advanced_buttons3_add_before : "tablecontrols",
http://pkforum.dolphinhelp.com
Quote · 30 Jun 2012
 
 
Below is the legacy version of the Boonex site, maintained for Dolphin.Pro 7.x support.
The new Dolphin solution is powered by UNA Community Management System.