
08-07-2008, 07:03 AM
|
|
|
Join Date: Apr 2006
Posts: 131
Благодарил(а): 0 раз(а)
Поблагодарили:
0 раз(а) в 0 сообщениях
|
|
Quote:
Originally Posted by trilljester
Alright, this is what I did to fix the email being sent out and the address, site name, etc.. being all goofy:
In the includes/cron/remindermail.php file:
FIND:
Code:
if(is_valid_email($toemail)){
$sentlist .= "$username ";
vbmail($toemail, $subject, $message, $notsubscription = false, $from = $vbulletin->options['bbtitle'], $uheaders = '', $username = '');
} else {
REPLACE with this:
Code:
if(is_valid_email($toemail)){
$sentlist .= "$username ";
vbmail($toemail, $subject, $message);
} else {
That will fix the email going out to the users, if you want to fix the email that is sent to you with the report, modify the 2 vbmail functions near the bottom of the file to only have 3 options.
|
dude its still the same thing... its still sending a email from host email adress..... its now showing site email or contact............
plzzz help meee...
|