
04-18-2005, 08:07 AM
|
|
|
Join Date: Mar 2005
Posts: 38
Благодарил(а): 0 раз(а)
Поблагодарили:
0 раз(а) в 0 сообщениях
|
|
Quote:
Originally Posted by memobug
Find this bit towards the bottom of commbull.php
Code:
if ($user[receivebulletin_type] == '1')
{
/*
$htmlmail = new send_mail($user['email'],"$bbtitle Mailer",$webmasteremail,$subject,$HTML_mailbody);
$htmlmail->changetype('html');
$htmlmail->send();
*/
if (DEBUG_COMMBULL == '0')
{
mail($user[email],$subject,$HTML_mailbody,$htmlEmailHeader);
}
echo ' html ';
}
else
and right before it, insert the new line:
Code:
$user[receivebulletin_type]=0;
That should force everyone to text regardless of their setting.
Regards,
Matt
|
Thank you!
But is there a way I make the default is by text mail If they like html mail They can chnage it to HTML mail.
|