Where can I add FONT Color to mass mailer

Where can I add an option to change font color to the mass mailer?

I'm also trying to make the textarea a bit wider but I guess it's not in the notify.php and looking around where is the property..

Does someone know in which php file I should look?

Quote · 24 Oct 2010

Go to your Admin>Settings>Email Templates> and then edit each page you want.

ManOfTeal.COM a Proud UNA site, six years running strong!
Quote · 24 Oct 2010

I'm talking about the textarea at the mass mailer under tools where the Admin is typing the mass mailer.

Quote · 24 Oct 2010

I guess I've find the CSS for those who want to change the layout: forms_adv.css

Quote · 24 Oct 2010

Someone can help where I can find the definition for the tiny_mce for the mass mailer textarea?? I want to try and add more options..

Looking around but can't find the location....

Quote · 24 Oct 2010

OK...for all the people who are interested and using mass mailer option and want to give it a better look, you should change at:

BxBaseFormView.php

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

to:

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

And that will add additional icons.

Also as I've posted before to make the textarea a little wider change it at Form_adv.css

 

Done with this thread. I hope it will save couple of minutes looking around the code here

Quote · 24 Oct 2010
 
 
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.