
9. December 2007, 01:50 AM
|
|
Administrator
|
|
|
|
|
|
Kullanıcılarınıza HTML Mailler Gönderin
admincp/email.php dosyasını açın
Şu kodu bulun:
Kod:
print_textarea_row($vbphrase['message_email'], 'message', '', 10, 50);
Altına ekleyin:
Kod:
print_yes_no_row('Send HTML Email?', 'sendhtml', 0);
Şu kodu bulun:
Kod:
construct_hidden_code('test', $vbulletin->GPC['test']);
Altına ekleyin:
Kod:
construct_hidden_code('sendhtml', $_POST['sendhtml']);
includes/class_mail.php dosyasını açın
şu kodu bulun:
Kod:
$headers .= 'Content-Type: text/plain' . iif($encoding, "; charset=\"$encoding\"") . $delimiter;
Şununla değiştirin:
Kod:
if($_POST['sendhtml']) { $headers .= 'Content-Type: text/html' . iif($encoding, "; charset=\"$encoding\"") . $delimiter;}else{ $headers .= 'Content-Type: text/plain' . iif($encoding, "; charset=\"$encoding\"") . $delimiter;}
|