to site e-mail

Hi !

I need to change the default value of the email form when a user send email to other from site the default value is " both " but i need to chenge it to " To site e-mail " can any one help me ?!

Quote · 5 Apr 2009

You can change the email addresses you were asked for during installation by editing the following:

First, make a backup of any files you are going to edit.

find: 
/inc/header.inc.php

Find: 
$site['email'] = "admin@yoursite.com"; 
$site['email_notify'] = "admin@yoursite.com"; 
$site['bugReportMail'] = "admin@yoursite.com"; 

Change the addresses to what you require. 

Save header.inc.php and reupload to /inc/

Quote · 6 Apr 2009

In the file, yoursite.com/compose.php

.

.

Find:

.

.

   default:
    $email_sel = "";
    $lovemail_sel = "";
    $both_sel = ' checked="checked"';
    break;

.

.

.

Replace with:

.

.

   default:

    $email_sel = "";

    $lovemail_sel = ' checked="checked"';

    $both_sel = "";

    break;

.

.

You may have to clear your browser's cache to see the changes.  Make sure you make a backup copy of compose.php before you make the changes.

My opinions expressed on this site, in no way represent those of Boonex or Boonex employees.
Quote · 6 Apr 2009

 

In the file, yoursite.com/compose.php

.

.

Find:

.

.

   default:
    $email_sel = "";
    $lovemail_sel = "";
    $both_sel = ' checked="checked"';
    break;

.

.

.

Replace with:

.

.

   default:

    $email_sel = "";

    $lovemail_sel = ' checked="checked"';

    $both_sel = "";

    break;

.

.

You may have to clear your browser's cache to see the changes.  Make sure you make a backup copy of compose.php before you make the changes.

 

thank you so much  :)

Quote · 14 Apr 2009
 
 
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.